sap.businessone.inventory
Module sap.businessone.inventory
API
Definitions
ballerinax/sap.businessone.inventory Ballerina library
Overview
SAP Business One is an enterprise resource planning (ERP) solution designed for small and midsize businesses by SAP SE. Its Service Layer exposes the Business One business objects through an OData web service interface.
The SAP Business One Inventory connector provides APIs for the inventory objects of SAP Business One: items, warehouses, price lists, stock transactions, batches, serials, and bin locations, exposed through the SAP Business One Service Layer (OData).
Key Features
- Manage item master data, groups, and properties
- Post goods receipts, goods issues, stock transfers, and inventory countings
- Maintain price lists, special prices, and discount groups
- Track batch and serial numbers and bin locations
Setup guide
The connector requires an SAP Business One installation with the Service Layer component enabled (available for
SAP Business One, version for SAP HANA, and SAP Business One on Microsoft SQL Server 9.3 PL10+). The Service Layer
endpoint is https://<host>:50000/b1s/v1 by default. A Business One user with a license and the relevant object
authorizations is needed; sessions are opened against a specific company database (schema).
Quickstart
To use the sap.businessone.inventory connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/sap.businessone.inventory;
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 = ?; inventory:Client b1Client = check new ( {companyDb, username, password}, serviceUrl = serviceUrl );
Step 3: Invoke the connector operation
inventory:Items_CollectionResponse response = check b1Client->itemsList();
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.inventory: 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
listAlternateCatNum
function listAlternateCatNum(ListAlternateCatNumHeaders headers, *ListAlternateCatNumQueries queries) returns AlternateCatNumCollectionResponse|errorQuery the AlternateCatNum collection
Parameters
- headers ListAlternateCatNumHeaders (default {}) - Headers to be sent with the request
- queries *ListAlternateCatNumQueries - Queries to be sent with the request
Return Type
- AlternateCatNumCollectionResponse|error - A page of entities
createAlternateCatNum
function createAlternateCatNum(AlternateCatNum payload, map<string|string[]> headers) returns AlternateCatNum|errorCreate a new AlternateCatNum
Parameters
- payload AlternateCatNum - Request payload
Return Type
- AlternateCatNum|error - The created entity
getAlternateCatNum
function getAlternateCatNum(string itemCode, string cardCode, string substitute, map<string|string[]> headers, *GetAlternateCatNumQueries queries) returns AlternateCatNum|errorGet a single AlternateCatNum by key
Parameters
- itemCode string - Composite key part 'ItemCode' (Edm.String)
- cardCode string - Composite key part 'CardCode' (Edm.String)
- substitute string - Composite key part 'Substitute' (Edm.String)
- queries *GetAlternateCatNumQueries - Queries to be sent with the request
Return Type
- AlternateCatNum|error - The requested entity
deleteAlternateCatNum
function deleteAlternateCatNum(string itemCode, string cardCode, string substitute, map<string|string[]> headers) returns error?Delete a AlternateCatNum
Parameters
- itemCode string - Composite key part 'ItemCode' (Edm.String)
- cardCode string - Composite key part 'CardCode' (Edm.String)
- substitute string - Composite key part 'Substitute' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateAlternateCatNum
function updateAlternateCatNum(string itemCode, string cardCode, string substitute, AlternateCatNum payload, map<string|string[]> headers) returns error?Partially update a AlternateCatNum (PATCH/MERGE semantics)
Parameters
- itemCode string - Composite key part 'ItemCode' (Edm.String)
- cardCode string - Composite key part 'CardCode' (Edm.String)
- substitute string - Composite key part 'Substitute' (Edm.String)
- payload AlternateCatNum - Request payload
Return Type
- error? - Updated. No content returned
alternativeItemsServiceAddItem
function alternativeItemsServiceAddItem(AlternativeItemsService_AddItem_body payload, map<string|string[]> headers) returns OriginalItemParams|errorAdd item
Parameters
- payload AlternativeItemsService_AddItem_body - Request payload
Return Type
- OriginalItemParams|error - Function result
alternativeItemsServiceDeleteItem
function alternativeItemsServiceDeleteItem(AlternativeItemsService_DeleteItem_body payload, map<string|string[]> headers) returns error?Delete item
Parameters
- payload AlternativeItemsService_DeleteItem_body - Request payload
Return Type
- error? - Success. No content returned
alternativeItemsServiceGetItem
function alternativeItemsServiceGetItem(AlternativeItemsService_GetItem_body payload, map<string|string[]> headers) returns OriginalItem|errorGet item
Parameters
- payload AlternativeItemsService_GetItem_body - Request payload
Return Type
- OriginalItem|error - Function result
alternativeItemsServiceUpdateItem
function alternativeItemsServiceUpdateItem(AlternativeItemsService_UpdateItem_body payload, map<string|string[]> headers) returns error?Update item
Parameters
- payload AlternativeItemsService_UpdateItem_body - Request payload
Return Type
- error? - Success. No content returned
listAttributeGroups
function listAttributeGroups(ListAttributeGroupsHeaders headers, *ListAttributeGroupsQueries queries) returns AttributeGroupsCollectionResponse|errorQuery the AttributeGroups collection
Parameters
- headers ListAttributeGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListAttributeGroupsQueries - Queries to be sent with the request
Return Type
- AttributeGroupsCollectionResponse|error - A page of entities
createAttributeGroups
function createAttributeGroups(AttributeGroup payload, map<string|string[]> headers) returns AttributeGroup|errorCreate a new AttributeGroup
Parameters
- payload AttributeGroup - Request payload
Return Type
- AttributeGroup|error - The created entity
getAttributeGroups
function getAttributeGroups(Signed32 code, map<string|string[]> headers, *GetAttributeGroupsQueries queries) returns AttributeGroup|errorGet a single AttributeGroup by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetAttributeGroupsQueries - Queries to be sent with the request
Return Type
- AttributeGroup|error - The requested entity
deleteAttributeGroups
Delete a AttributeGroup
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateAttributeGroups
function updateAttributeGroups(Signed32 code, AttributeGroup payload, map<string|string[]> headers) returns error?Partially update a AttributeGroup (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
attributeGroupsServiceGetList
function attributeGroupsServiceGetList(map<string|string[]> headers) returns inline_response_200|errorGet list
Return Type
- inline_response_200|error - Function result
listBarCodes
function listBarCodes(ListBarCodesHeaders headers, *ListBarCodesQueries queries) returns BarCodesCollectionResponse|errorQuery the BarCodes collection
Parameters
- headers ListBarCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListBarCodesQueries - Queries to be sent with the request
Return Type
- BarCodesCollectionResponse|error - A page of entities
createBarCodes
Create a new BarCode
Parameters
- payload BarCode - Request payload
getBarCodes
function getBarCodes(Signed32 absEntry, map<string|string[]> headers, *GetBarCodesQueries queries) returns BarCode|errorGet a single BarCode by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetBarCodesQueries - Queries to be sent with the request
deleteBarCodes
Delete a BarCode
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBarCodes
function updateBarCodes(Signed32 absEntry, BarCode payload, map<string|string[]> headers) returns error?Partially update a BarCode (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
barCodesServiceGetList
function barCodesServiceGetList(map<string|string[]> headers) returns inline_response_200_1|errorGet list
Return Type
- inline_response_200_1|error - Function result
listBatchNumberDetails
function listBatchNumberDetails(ListBatchNumberDetailsHeaders headers, *ListBatchNumberDetailsQueries queries) returns BatchNumberDetailsCollectionResponse|errorQuery the BatchNumberDetails collection
Parameters
- headers ListBatchNumberDetailsHeaders (default {}) - Headers to be sent with the request
- queries *ListBatchNumberDetailsQueries - Queries to be sent with the request
Return Type
- BatchNumberDetailsCollectionResponse|error - A page of entities
createBatchNumberDetails
function createBatchNumberDetails(BatchNumberDetail payload, map<string|string[]> headers) returns BatchNumberDetail|errorCreate a new BatchNumberDetail
Parameters
- payload BatchNumberDetail - Request payload
Return Type
- BatchNumberDetail|error - The created entity
getBatchNumberDetails
function getBatchNumberDetails(Signed32 docEntry, map<string|string[]> headers, *GetBatchNumberDetailsQueries queries) returns BatchNumberDetail|errorGet a single BatchNumberDetail by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetBatchNumberDetailsQueries - Queries to be sent with the request
Return Type
- BatchNumberDetail|error - The requested entity
deleteBatchNumberDetails
Delete a BatchNumberDetail
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBatchNumberDetails
function updateBatchNumberDetails(Signed32 docEntry, BatchNumberDetail payload, map<string|string[]> headers) returns error?Partially update a BatchNumberDetail (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload BatchNumberDetail - Request payload
Return Type
- error? - Updated. No content returned
listBinLocationAttributes
function listBinLocationAttributes(ListBinLocationAttributesHeaders headers, *ListBinLocationAttributesQueries queries) returns BinLocationAttributesCollectionResponse|errorQuery the BinLocationAttributes collection
Parameters
- headers ListBinLocationAttributesHeaders (default {}) - Headers to be sent with the request
- queries *ListBinLocationAttributesQueries - Queries to be sent with the request
Return Type
- BinLocationAttributesCollectionResponse|error - A page of entities
createBinLocationAttributes
function createBinLocationAttributes(BinLocationAttribute payload, map<string|string[]> headers) returns BinLocationAttribute|errorCreate a new BinLocationAttribute
Parameters
- payload BinLocationAttribute - Request payload
Return Type
- BinLocationAttribute|error - The created entity
getBinLocationAttributes
function getBinLocationAttributes(Signed32 absEntry, map<string|string[]> headers, *GetBinLocationAttributesQueries queries) returns BinLocationAttribute|errorGet a single BinLocationAttribute by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetBinLocationAttributesQueries - Queries to be sent with the request
Return Type
- BinLocationAttribute|error - The requested entity
deleteBinLocationAttributes
function deleteBinLocationAttributes(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a BinLocationAttribute
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBinLocationAttributes
function updateBinLocationAttributes(Signed32 absEntry, BinLocationAttribute payload, map<string|string[]> headers) returns error?Partially update a BinLocationAttribute (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload BinLocationAttribute - Request payload
Return Type
- error? - Updated. No content returned
binLocationAttributesServiceGetList
function binLocationAttributesServiceGetList(map<string|string[]> headers) returns inline_response_200_2|errorGet list
Return Type
- inline_response_200_2|error - Function result
listBinLocationFields
function listBinLocationFields(ListBinLocationFieldsHeaders headers, *ListBinLocationFieldsQueries queries) returns BinLocationFieldsCollectionResponse|errorQuery the BinLocationFields collection
Parameters
- headers ListBinLocationFieldsHeaders (default {}) - Headers to be sent with the request
- queries *ListBinLocationFieldsQueries - Queries to be sent with the request
Return Type
- BinLocationFieldsCollectionResponse|error - A page of entities
createBinLocationFields
function createBinLocationFields(BinLocationField payload, map<string|string[]> headers) returns BinLocationField|errorCreate a new BinLocationField
Parameters
- payload BinLocationField - Request payload
Return Type
- BinLocationField|error - The created entity
getBinLocationFields
function getBinLocationFields(Signed32 absEntry, map<string|string[]> headers, *GetBinLocationFieldsQueries queries) returns BinLocationField|errorGet a single BinLocationField by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetBinLocationFieldsQueries - Queries to be sent with the request
Return Type
- BinLocationField|error - The requested entity
deleteBinLocationFields
Delete a BinLocationField
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBinLocationFields
function updateBinLocationFields(Signed32 absEntry, BinLocationField payload, map<string|string[]> headers) returns error?Partially update a BinLocationField (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload BinLocationField - Request payload
Return Type
- error? - Updated. No content returned
binLocationFieldsServiceGetList
function binLocationFieldsServiceGetList(map<string|string[]> headers) returns inline_response_200_3|errorGet list
Return Type
- inline_response_200_3|error - Function result
listBinLocations
function listBinLocations(ListBinLocationsHeaders headers, *ListBinLocationsQueries queries) returns BinLocationsCollectionResponse|errorQuery the BinLocations collection
Parameters
- headers ListBinLocationsHeaders (default {}) - Headers to be sent with the request
- queries *ListBinLocationsQueries - Queries to be sent with the request
Return Type
- BinLocationsCollectionResponse|error - A page of entities
createBinLocations
function createBinLocations(BinLocation payload, map<string|string[]> headers) returns BinLocation|errorCreate a new BinLocation
Parameters
- payload BinLocation - Request payload
Return Type
- BinLocation|error - The created entity
getBinLocations
function getBinLocations(Signed32 absEntry, map<string|string[]> headers, *GetBinLocationsQueries queries) returns BinLocation|errorGet a single BinLocation by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetBinLocationsQueries - Queries to be sent with the request
Return Type
- BinLocation|error - The requested entity
deleteBinLocations
Delete a BinLocation
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateBinLocations
function updateBinLocations(Signed32 absEntry, BinLocation payload, map<string|string[]> headers) returns error?Partially update a BinLocation (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload BinLocation - Request payload
Return Type
- error? - Updated. No content returned
binLocationsServiceGetList
function binLocationsServiceGetList(map<string|string[]> headers) returns inline_response_200_4|errorGet list
Return Type
- inline_response_200_4|error - Function result
listCustomsGroups
function listCustomsGroups(ListCustomsGroupsHeaders headers, *ListCustomsGroupsQueries queries) returns CustomsGroupsCollectionResponse|errorQuery the CustomsGroups collection
Parameters
- headers ListCustomsGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListCustomsGroupsQueries - Queries to be sent with the request
Return Type
- CustomsGroupsCollectionResponse|error - A page of entities
createCustomsGroups
function createCustomsGroups(CustomsGroup payload, map<string|string[]> headers) returns CustomsGroup|errorCreate a new CustomsGroup
Parameters
- payload CustomsGroup - Request payload
Return Type
- CustomsGroup|error - The created entity
getCustomsGroups
function getCustomsGroups(Signed32 code, map<string|string[]> headers, *GetCustomsGroupsQueries queries) returns CustomsGroup|errorGet a single CustomsGroup by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetCustomsGroupsQueries - Queries to be sent with the request
Return Type
- CustomsGroup|error - The requested entity
deleteCustomsGroups
Delete a CustomsGroup
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateCustomsGroups
function updateCustomsGroups(Signed32 code, CustomsGroup payload, map<string|string[]> headers) returns error?Partially update a CustomsGroup (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listCycleCountDeterminations
function listCycleCountDeterminations(ListCycleCountDeterminationsHeaders headers, *ListCycleCountDeterminationsQueries queries) returns CycleCountDeterminationsCollectionResponse|errorQuery the CycleCountDeterminations collection
Parameters
- headers ListCycleCountDeterminationsHeaders (default {}) - Headers to be sent with the request
- queries *ListCycleCountDeterminationsQueries - Queries to be sent with the request
Return Type
- CycleCountDeterminationsCollectionResponse|error - A page of entities
createCycleCountDeterminations
function createCycleCountDeterminations(CycleCountDetermination payload, map<string|string[]> headers) returns CycleCountDetermination|errorCreate a new CycleCountDetermination
Parameters
- payload CycleCountDetermination - Request payload
Return Type
- CycleCountDetermination|error - The created entity
getCycleCountDeterminations
function getCycleCountDeterminations(string warehouseCode, map<string|string[]> headers, *GetCycleCountDeterminationsQueries queries) returns CycleCountDetermination|errorGet a single CycleCountDetermination by key
Parameters
- warehouseCode string - Key property 'WarehouseCode' (Edm.String)
- queries *GetCycleCountDeterminationsQueries - Queries to be sent with the request
Return Type
- CycleCountDetermination|error - The requested entity
deleteCycleCountDeterminations
function deleteCycleCountDeterminations(string warehouseCode, map<string|string[]> headers) returns error?Delete a CycleCountDetermination
Parameters
- warehouseCode string - Key property 'WarehouseCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateCycleCountDeterminations
function updateCycleCountDeterminations(string warehouseCode, CycleCountDetermination payload, map<string|string[]> headers) returns error?Partially update a CycleCountDetermination (PATCH/MERGE semantics)
Parameters
- warehouseCode string - Key property 'WarehouseCode' (Edm.String)
- payload CycleCountDetermination - Request payload
Return Type
- error? - Updated. No content returned
cycleCountDeterminationsServiceGetList
function cycleCountDeterminationsServiceGetList(map<string|string[]> headers) returns inline_response_200_5|errorGet list
Return Type
- inline_response_200_5|error - Function result
listEnhancedDiscountGroups
function listEnhancedDiscountGroups(ListEnhancedDiscountGroupsHeaders headers, *ListEnhancedDiscountGroupsQueries queries) returns EnhancedDiscountGroupsCollectionResponse|errorQuery the EnhancedDiscountGroups collection
Parameters
- headers ListEnhancedDiscountGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListEnhancedDiscountGroupsQueries - Queries to be sent with the request
Return Type
- EnhancedDiscountGroupsCollectionResponse|error - A page of entities
createEnhancedDiscountGroups
function createEnhancedDiscountGroups(EnhancedDiscountGroup payload, map<string|string[]> headers) returns EnhancedDiscountGroup|errorCreate a new EnhancedDiscountGroup
Parameters
- payload EnhancedDiscountGroup - Request payload
Return Type
- EnhancedDiscountGroup|error - The created entity
getEnhancedDiscountGroups
function getEnhancedDiscountGroups(Signed32 absEntry, map<string|string[]> headers, *GetEnhancedDiscountGroupsQueries queries) returns EnhancedDiscountGroup|errorGet a single EnhancedDiscountGroup by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetEnhancedDiscountGroupsQueries - Queries to be sent with the request
Return Type
- EnhancedDiscountGroup|error - The requested entity
deleteEnhancedDiscountGroups
function deleteEnhancedDiscountGroups(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a EnhancedDiscountGroup
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateEnhancedDiscountGroups
function updateEnhancedDiscountGroups(Signed32 absEntry, EnhancedDiscountGroup payload, map<string|string[]> headers) returns error?Partially update a EnhancedDiscountGroup (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload EnhancedDiscountGroup - Request payload
Return Type
- error? - Updated. No content returned
enhancedDiscountGroupsServiceGetList
function enhancedDiscountGroupsServiceGetList(map<string|string[]> headers) returns inline_response_200_6|errorGet list
Return Type
- inline_response_200_6|error - Function result
listInventoryCountingDrafts
function listInventoryCountingDrafts(ListInventoryCountingDraftsHeaders headers, *ListInventoryCountingDraftsQueries queries) returns InventoryCountingDraftsCollectionResponse|errorQuery the InventoryCountingDrafts collection
Parameters
- headers ListInventoryCountingDraftsHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryCountingDraftsQueries - Queries to be sent with the request
Return Type
- InventoryCountingDraftsCollectionResponse|error - A page of entities
createInventoryCountingDrafts
function createInventoryCountingDrafts(InventoryCountingDraft payload, map<string|string[]> headers) returns InventoryCountingDraft|errorCreate a new InventoryCountingDraft
Parameters
- payload InventoryCountingDraft - Request payload
Return Type
- InventoryCountingDraft|error - The created entity
getInventoryCountingDrafts
function getInventoryCountingDrafts(Signed32 documentEntry, map<string|string[]> headers, *GetInventoryCountingDraftsQueries queries) returns InventoryCountingDraft|errorGet a single InventoryCountingDraft by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetInventoryCountingDraftsQueries - Queries to be sent with the request
Return Type
- InventoryCountingDraft|error - The requested entity
deleteInventoryCountingDrafts
function deleteInventoryCountingDrafts(Signed32 documentEntry, map<string|string[]> headers) returns error?Delete a InventoryCountingDraft
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryCountingDrafts
function updateInventoryCountingDrafts(Signed32 documentEntry, InventoryCountingDraft payload, map<string|string[]> headers) returns error?Partially update a InventoryCountingDraft (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload InventoryCountingDraft - Request payload
Return Type
- error? - Updated. No content returned
listInventoryCountings
function listInventoryCountings(ListInventoryCountingsHeaders headers, *ListInventoryCountingsQueries queries) returns InventoryCountingsCollectionResponse|errorQuery the InventoryCountings collection
Parameters
- headers ListInventoryCountingsHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryCountingsQueries - Queries to be sent with the request
Return Type
- InventoryCountingsCollectionResponse|error - A page of entities
createInventoryCountings
function createInventoryCountings(InventoryCounting payload, map<string|string[]> headers) returns InventoryCounting|errorCreate a new InventoryCounting
Parameters
- payload InventoryCounting - Request payload
Return Type
- InventoryCounting|error - The created entity
getInventoryCountings
function getInventoryCountings(Signed32 documentEntry, map<string|string[]> headers, *GetInventoryCountingsQueries queries) returns InventoryCounting|errorGet a single InventoryCounting by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetInventoryCountingsQueries - Queries to be sent with the request
Return Type
- InventoryCounting|error - The requested entity
deleteInventoryCountings
function deleteInventoryCountings(Signed32 documentEntry, map<string|string[]> headers) returns error?Delete a InventoryCounting
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryCountings
function updateInventoryCountings(Signed32 documentEntry, InventoryCounting payload, map<string|string[]> headers) returns error?Partially update a InventoryCounting (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload InventoryCounting - Request payload
Return Type
- error? - Updated. No content returned
inventoryCountingsClose
function inventoryCountingsClose(Signed32 documentEntry, map<string|string[]> headers) returns error?Bound action 'Close' on InventoryCountings (binding type InventoryCounting)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
inventoryCountingsServiceGetList
function inventoryCountingsServiceGetList(map<string|string[]> headers) returns inline_response_200_7|errorGet list
Return Type
- inline_response_200_7|error - Function result
listInventoryCycles
function listInventoryCycles(ListInventoryCyclesHeaders headers, *ListInventoryCyclesQueries queries) returns InventoryCyclesCollectionResponse|errorQuery the InventoryCycles collection
Parameters
- headers ListInventoryCyclesHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryCyclesQueries - Queries to be sent with the request
Return Type
- InventoryCyclesCollectionResponse|error - A page of entities
createInventoryCycles
function createInventoryCycles(InventoryCycles payload, map<string|string[]> headers) returns InventoryCycles|errorCreate a new InventoryCycles
Parameters
- payload InventoryCycles - Request payload
Return Type
- InventoryCycles|error - The created entity
getInventoryCycles
function getInventoryCycles(Signed32 cycleCode, map<string|string[]> headers, *GetInventoryCyclesQueries queries) returns InventoryCycles|errorGet a single InventoryCycles by key
Parameters
- cycleCode Signed32 - Key property 'CycleCode' (Edm.Int32)
- queries *GetInventoryCyclesQueries - Queries to be sent with the request
Return Type
- InventoryCycles|error - The requested entity
deleteInventoryCycles
Delete a InventoryCycles
Parameters
- cycleCode Signed32 - Key property 'CycleCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryCycles
function updateInventoryCycles(Signed32 cycleCode, InventoryCycles payload, map<string|string[]> headers) returns error?Partially update a InventoryCycles (PATCH/MERGE semantics)
Parameters
- cycleCode Signed32 - Key property 'CycleCode' (Edm.Int32)
- payload InventoryCycles - Request payload
Return Type
- error? - Updated. No content returned
listInventoryGenEntries
function listInventoryGenEntries(ListInventoryGenEntriesHeaders headers, *ListInventoryGenEntriesQueries queries) returns InventoryGenEntriesCollectionResponse|errorQuery the InventoryGenEntries collection
Parameters
- headers ListInventoryGenEntriesHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryGenEntriesQueries - Queries to be sent with the request
Return Type
- InventoryGenEntriesCollectionResponse|error - A page of entities
createInventoryGenEntries
function createInventoryGenEntries(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getInventoryGenEntries
function getInventoryGenEntries(Signed32 docEntry, map<string|string[]> headers, *GetInventoryGenEntriesQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetInventoryGenEntriesQueries - Queries to be sent with the request
deleteInventoryGenEntries
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryGenEntries
function updateInventoryGenEntries(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
inventoryGenEntriesCancel
Bound action 'Cancel' on InventoryGenEntries (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
inventoryGenEntriesClose
Bound action 'Close' on InventoryGenEntries (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
inventoryGenEntriesCreateCancellationDocument
function inventoryGenEntriesCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on InventoryGenEntries (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
inventoryGenEntriesReopen
Bound action 'Reopen' on InventoryGenEntries (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
inventoryGenEntryServiceApproveAndAdd
function inventoryGenEntryServiceApproveAndAdd(InventoryGenEntryService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload InventoryGenEntryService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
inventoryGenEntryServiceApproveAndUpdate
function inventoryGenEntryServiceApproveAndUpdate(InventoryGenEntryService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload InventoryGenEntryService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
inventoryGenEntryServiceCloseByDate
function inventoryGenEntryServiceCloseByDate(InventoryGenEntryService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload InventoryGenEntryService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
inventoryGenEntryServiceExportEWayBill
function inventoryGenEntryServiceExportEWayBill(InventoryGenEntryService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload InventoryGenEntryService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
inventoryGenEntryServiceGetApprovalTemplates
function inventoryGenEntryServiceGetApprovalTemplates(InventoryGenEntryService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload InventoryGenEntryService_GetApprovalTemplates_body - Request payload
inventoryGenEntryServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
inventoryGenEntryServiceInitData
Init data
inventoryGenExitServiceApproveAndAdd
function inventoryGenExitServiceApproveAndAdd(InventoryGenExitService_ApproveAndAdd_body payload, map<string|string[]> headers) returns error?Approve and add
Parameters
- payload InventoryGenExitService_ApproveAndAdd_body - Request payload
Return Type
- error? - Success. No content returned
inventoryGenExitServiceApproveAndUpdate
function inventoryGenExitServiceApproveAndUpdate(InventoryGenExitService_ApproveAndUpdate_body payload, map<string|string[]> headers) returns error?Approve and update
Parameters
- payload InventoryGenExitService_ApproveAndUpdate_body - Request payload
Return Type
- error? - Success. No content returned
inventoryGenExitServiceCloseByDate
function inventoryGenExitServiceCloseByDate(InventoryGenExitService_CloseByDate_body payload, map<string|string[]> headers) returns error?Close by date
Parameters
- payload InventoryGenExitService_CloseByDate_body - Request payload
Return Type
- error? - Success. No content returned
inventoryGenExitServiceExportEWayBill
function inventoryGenExitServiceExportEWayBill(InventoryGenExitService_ExportEWayBill_body payload, map<string|string[]> headers) returns error?Export E way bill
Parameters
- payload InventoryGenExitService_ExportEWayBill_body - Request payload
Return Type
- error? - Success. No content returned
inventoryGenExitServiceGetApprovalTemplates
function inventoryGenExitServiceGetApprovalTemplates(InventoryGenExitService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns Document|errorGet approval templates
Parameters
- payload InventoryGenExitService_GetApprovalTemplates_body - Request payload
inventoryGenExitServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
inventoryGenExitServiceInitData
Init data
listInventoryGenExits
function listInventoryGenExits(ListInventoryGenExitsHeaders headers, *ListInventoryGenExitsQueries queries) returns InventoryGenExitsCollectionResponse|errorQuery the InventoryGenExits collection
Parameters
- headers ListInventoryGenExitsHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryGenExitsQueries - Queries to be sent with the request
Return Type
- InventoryGenExitsCollectionResponse|error - A page of entities
createInventoryGenExits
function createInventoryGenExits(Document payload, map<string|string[]> headers) returns Document|errorCreate a new Document
Parameters
- payload Document - Request payload
getInventoryGenExits
function getInventoryGenExits(Signed32 docEntry, map<string|string[]> headers, *GetInventoryGenExitsQueries queries) returns Document|errorGet a single Document by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetInventoryGenExitsQueries - Queries to be sent with the request
deleteInventoryGenExits
Delete a Document
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryGenExits
function updateInventoryGenExits(Signed32 docEntry, Document payload, map<string|string[]> headers) returns error?Partially update a Document (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
inventoryGenExitsCancel
Bound action 'Cancel' on InventoryGenExits (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
inventoryGenExitsClose
Bound action 'Close' on InventoryGenExits (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
inventoryGenExitsCreateCancellationDocument
function inventoryGenExitsCreateCancellationDocument(Signed32 docEntry, map<string|string[]> headers) returns Document|errorBound action 'CreateCancellationDocument' on InventoryGenExits (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
inventoryGenExitsReopen
Bound action 'Reopen' on InventoryGenExits (binding type Document)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
listInventoryOpeningBalanceDrafts
function listInventoryOpeningBalanceDrafts(ListInventoryOpeningBalanceDraftsHeaders headers, *ListInventoryOpeningBalanceDraftsQueries queries) returns InventoryOpeningBalanceDraftsCollectionResponse|errorQuery the InventoryOpeningBalanceDrafts collection
Parameters
- headers ListInventoryOpeningBalanceDraftsHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryOpeningBalanceDraftsQueries - Queries to be sent with the request
Return Type
- InventoryOpeningBalanceDraftsCollectionResponse|error - A page of entities
createInventoryOpeningBalanceDrafts
function createInventoryOpeningBalanceDrafts(InventoryOpeningBalanceDraft payload, map<string|string[]> headers) returns InventoryOpeningBalanceDraft|errorCreate a new InventoryOpeningBalanceDraft
Parameters
- payload InventoryOpeningBalanceDraft - Request payload
Return Type
- InventoryOpeningBalanceDraft|error - The created entity
getInventoryOpeningBalanceDrafts
function getInventoryOpeningBalanceDrafts(Signed32 documentEntry, map<string|string[]> headers, *GetInventoryOpeningBalanceDraftsQueries queries) returns InventoryOpeningBalanceDraft|errorGet a single InventoryOpeningBalanceDraft by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetInventoryOpeningBalanceDraftsQueries - Queries to be sent with the request
Return Type
- InventoryOpeningBalanceDraft|error - The requested entity
deleteInventoryOpeningBalanceDrafts
function deleteInventoryOpeningBalanceDrafts(Signed32 documentEntry, map<string|string[]> headers) returns error?Delete a InventoryOpeningBalanceDraft
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryOpeningBalanceDrafts
function updateInventoryOpeningBalanceDrafts(Signed32 documentEntry, InventoryOpeningBalanceDraft payload, map<string|string[]> headers) returns error?Partially update a InventoryOpeningBalanceDraft (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload InventoryOpeningBalanceDraft - Request payload
Return Type
- error? - Updated. No content returned
listInventoryOpeningBalances
function listInventoryOpeningBalances(ListInventoryOpeningBalancesHeaders headers, *ListInventoryOpeningBalancesQueries queries) returns InventoryOpeningBalancesCollectionResponse|errorQuery the InventoryOpeningBalances collection
Parameters
- headers ListInventoryOpeningBalancesHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryOpeningBalancesQueries - Queries to be sent with the request
Return Type
- InventoryOpeningBalancesCollectionResponse|error - A page of entities
createInventoryOpeningBalances
function createInventoryOpeningBalances(InventoryOpeningBalance payload, map<string|string[]> headers) returns InventoryOpeningBalance|errorCreate a new InventoryOpeningBalance
Parameters
- payload InventoryOpeningBalance - Request payload
Return Type
- InventoryOpeningBalance|error - The created entity
getInventoryOpeningBalances
function getInventoryOpeningBalances(Signed32 documentEntry, map<string|string[]> headers, *GetInventoryOpeningBalancesQueries queries) returns InventoryOpeningBalance|errorGet a single InventoryOpeningBalance by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetInventoryOpeningBalancesQueries - Queries to be sent with the request
Return Type
- InventoryOpeningBalance|error - The requested entity
deleteInventoryOpeningBalances
function deleteInventoryOpeningBalances(Signed32 documentEntry, map<string|string[]> headers) returns error?Delete a InventoryOpeningBalance
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryOpeningBalances
function updateInventoryOpeningBalances(Signed32 documentEntry, InventoryOpeningBalance payload, map<string|string[]> headers) returns error?Partially update a InventoryOpeningBalance (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload InventoryOpeningBalance - Request payload
Return Type
- error? - Updated. No content returned
inventoryOpeningBalancesServiceGetList
function inventoryOpeningBalancesServiceGetList(map<string|string[]> headers) returns inline_response_200_8|errorGet list
Return Type
- inline_response_200_8|error - Function result
listInventoryPostingDrafts
function listInventoryPostingDrafts(ListInventoryPostingDraftsHeaders headers, *ListInventoryPostingDraftsQueries queries) returns InventoryPostingDraftsCollectionResponse|errorQuery the InventoryPostingDrafts collection
Parameters
- headers ListInventoryPostingDraftsHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryPostingDraftsQueries - Queries to be sent with the request
Return Type
- InventoryPostingDraftsCollectionResponse|error - A page of entities
createInventoryPostingDrafts
function createInventoryPostingDrafts(InventoryPostingDraft payload, map<string|string[]> headers) returns InventoryPostingDraft|errorCreate a new InventoryPostingDraft
Parameters
- payload InventoryPostingDraft - Request payload
Return Type
- InventoryPostingDraft|error - The created entity
getInventoryPostingDrafts
function getInventoryPostingDrafts(Signed32 documentEntry, map<string|string[]> headers, *GetInventoryPostingDraftsQueries queries) returns InventoryPostingDraft|errorGet a single InventoryPostingDraft by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetInventoryPostingDraftsQueries - Queries to be sent with the request
Return Type
- InventoryPostingDraft|error - The requested entity
deleteInventoryPostingDrafts
function deleteInventoryPostingDrafts(Signed32 documentEntry, map<string|string[]> headers) returns error?Delete a InventoryPostingDraft
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryPostingDrafts
function updateInventoryPostingDrafts(Signed32 documentEntry, InventoryPostingDraft payload, map<string|string[]> headers) returns error?Partially update a InventoryPostingDraft (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload InventoryPostingDraft - Request payload
Return Type
- error? - Updated. No content returned
listInventoryPostings
function listInventoryPostings(ListInventoryPostingsHeaders headers, *ListInventoryPostingsQueries queries) returns InventoryPostingsCollectionResponse|errorQuery the InventoryPostings collection
Parameters
- headers ListInventoryPostingsHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryPostingsQueries - Queries to be sent with the request
Return Type
- InventoryPostingsCollectionResponse|error - A page of entities
createInventoryPostings
function createInventoryPostings(InventoryPosting payload, map<string|string[]> headers) returns InventoryPosting|errorCreate a new InventoryPosting
Parameters
- payload InventoryPosting - Request payload
Return Type
- InventoryPosting|error - The created entity
getInventoryPostings
function getInventoryPostings(Signed32 documentEntry, map<string|string[]> headers, *GetInventoryPostingsQueries queries) returns InventoryPosting|errorGet a single InventoryPosting by key
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- queries *GetInventoryPostingsQueries - Queries to be sent with the request
Return Type
- InventoryPosting|error - The requested entity
deleteInventoryPostings
function deleteInventoryPostings(Signed32 documentEntry, map<string|string[]> headers) returns error?Delete a InventoryPosting
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryPostings
function updateInventoryPostings(Signed32 documentEntry, InventoryPosting payload, map<string|string[]> headers) returns error?Partially update a InventoryPosting (PATCH/MERGE semantics)
Parameters
- documentEntry Signed32 - Key property 'DocumentEntry' (Edm.Int32)
- payload InventoryPosting - Request payload
Return Type
- error? - Updated. No content returned
inventoryPostingsServiceGetList
function inventoryPostingsServiceGetList(map<string|string[]> headers) returns inline_response_200_9|errorGet list
Return Type
- inline_response_200_9|error - Function result
inventoryPostingsServiceSetCopyOption
function inventoryPostingsServiceSetCopyOption(InventoryPostingsService_SetCopyOption_body payload, map<string|string[]> headers) returns error?Set copy option
Parameters
- payload InventoryPostingsService_SetCopyOption_body - Request payload
Return Type
- error? - Success. No content returned
listInventoryTransferRequests
function listInventoryTransferRequests(ListInventoryTransferRequestsHeaders headers, *ListInventoryTransferRequestsQueries queries) returns InventoryTransferRequestsCollectionResponse|errorQuery the InventoryTransferRequests collection
Parameters
- headers ListInventoryTransferRequestsHeaders (default {}) - Headers to be sent with the request
- queries *ListInventoryTransferRequestsQueries - Queries to be sent with the request
Return Type
- InventoryTransferRequestsCollectionResponse|error - A page of entities
createInventoryTransferRequests
function createInventoryTransferRequests(StockTransfer payload, map<string|string[]> headers) returns StockTransfer|errorCreate a new StockTransfer
Parameters
- payload StockTransfer - Request payload
Return Type
- StockTransfer|error - The created entity
getInventoryTransferRequests
function getInventoryTransferRequests(Signed32 docEntry, map<string|string[]> headers, *GetInventoryTransferRequestsQueries queries) returns StockTransfer|errorGet a single StockTransfer by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetInventoryTransferRequestsQueries - Queries to be sent with the request
Return Type
- StockTransfer|error - The requested entity
deleteInventoryTransferRequests
function deleteInventoryTransferRequests(Signed32 docEntry, map<string|string[]> headers) returns error?Delete a StockTransfer
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateInventoryTransferRequests
function updateInventoryTransferRequests(Signed32 docEntry, StockTransfer payload, map<string|string[]> headers) returns error?Partially update a StockTransfer (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload StockTransfer - Request payload
Return Type
- error? - Updated. No content returned
inventoryTransferRequestsCancel
function inventoryTransferRequestsCancel(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Cancel' on InventoryTransferRequests (binding type StockTransfer)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
inventoryTransferRequestsClose
function inventoryTransferRequestsClose(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'Close' on InventoryTransferRequests (binding type StockTransfer)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
inventoryTransferRequestsSaveDraftToDocument
function inventoryTransferRequestsSaveDraftToDocument(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'SaveDraftToDocument' on InventoryTransferRequests (binding type StockTransfer)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
inventoryTransferRequestsServiceGetApprovalTemplates
function inventoryTransferRequestsServiceGetApprovalTemplates(InventoryTransferRequestsService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns StockTransfer|errorGet approval templates
Parameters
- payload InventoryTransferRequestsService_GetApprovalTemplates_body - Request payload
Return Type
- StockTransfer|error - Function result
inventoryTransferRequestsServiceHandleApprovalRequest
function inventoryTransferRequestsServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
listItemGroups
function listItemGroups(ListItemGroupsHeaders headers, *ListItemGroupsQueries queries) returns ItemGroupsCollectionResponse|errorQuery the ItemGroups collection
Parameters
- headers ListItemGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListItemGroupsQueries - Queries to be sent with the request
Return Type
- ItemGroupsCollectionResponse|error - A page of entities
createItemGroups
function createItemGroups(ItemGroups payload, map<string|string[]> headers) returns ItemGroups|errorCreate a new ItemGroups
Parameters
- payload ItemGroups - Request payload
Return Type
- ItemGroups|error - The created entity
getItemGroups
function getItemGroups(Signed32 number, map<string|string[]> headers, *GetItemGroupsQueries queries) returns ItemGroups|errorGet a single ItemGroups by key
Parameters
- number Signed32 - Key property 'Number' (Edm.Int32)
- queries *GetItemGroupsQueries - Queries to be sent with the request
Return Type
- ItemGroups|error - The requested entity
deleteItemGroups
Delete a ItemGroups
Parameters
- number Signed32 - Key property 'Number' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateItemGroups
function updateItemGroups(Signed32 number, ItemGroups payload, map<string|string[]> headers) returns error?Partially update a ItemGroups (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
itemGroupsServiceUpdateWithOITMs
function itemGroupsServiceUpdateWithOITMs(ItemGroupsService_UpdateWithOITMs_body payload, map<string|string[]> headers) returns error?Update with OIT ms
Parameters
- payload ItemGroupsService_UpdateWithOITMs_body - Request payload
Return Type
- error? - Success. No content returned
listItemImages
function listItemImages(ListItemImagesHeaders headers, *ListItemImagesQueries queries) returns ItemImagesCollectionResponse|errorQuery the ItemImages collection
Parameters
- headers ListItemImagesHeaders (default {}) - Headers to be sent with the request
- queries *ListItemImagesQueries - Queries to be sent with the request
Return Type
- ItemImagesCollectionResponse|error - A page of entities
createItemImages
Create a new ItemImage
Parameters
- payload ItemImage - Request payload
getItemImages
function getItemImages(string itemCode, map<string|string[]> headers, *GetItemImagesQueries queries) returns ItemImage|errorGet a single ItemImage by key
Parameters
- itemCode string - Key property 'ItemCode' (Edm.String)
- queries *GetItemImagesQueries - Queries to be sent with the request
deleteItemImages
Delete a ItemImage
Parameters
- itemCode string - Key property 'ItemCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateItemImages
function updateItemImages(string itemCode, ItemImage payload, map<string|string[]> headers) returns error?Partially update a ItemImage (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listItemProperties
function listItemProperties(ListItemPropertiesHeaders headers, *ListItemPropertiesQueries queries) returns ItemPropertiesCollectionResponse|errorQuery the ItemProperties collection
Parameters
- headers ListItemPropertiesHeaders (default {}) - Headers to be sent with the request
- queries *ListItemPropertiesQueries - Queries to be sent with the request
Return Type
- ItemPropertiesCollectionResponse|error - A page of entities
createItemProperties
function createItemProperties(ItemProperty payload, map<string|string[]> headers) returns ItemProperty|errorCreate a new ItemProperty
Parameters
- payload ItemProperty - Request payload
Return Type
- ItemProperty|error - The created entity
getItemProperties
function getItemProperties(Signed32 number, map<string|string[]> headers, *GetItemPropertiesQueries queries) returns ItemProperty|errorGet a single ItemProperty by key
Parameters
- number Signed32 - Key property 'Number' (Edm.Int32)
- queries *GetItemPropertiesQueries - Queries to be sent with the request
Return Type
- ItemProperty|error - The requested entity
deleteItemProperties
Delete a ItemProperty
Parameters
- number Signed32 - Key property 'Number' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateItemProperties
function updateItemProperties(Signed32 number, ItemProperty payload, map<string|string[]> headers) returns error?Partially update a ItemProperty (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listItems
function listItems(ListItemsHeaders headers, *ListItemsQueries queries) returns ItemsCollectionResponse|errorQuery the Items collection
Parameters
- headers ListItemsHeaders (default {}) - Headers to be sent with the request
- queries *ListItemsQueries - Queries to be sent with the request
Return Type
- ItemsCollectionResponse|error - A page of entities
createItems
Create a new Item
Parameters
- payload Item - Request payload
getItems
function getItems(string itemCode, map<string|string[]> headers, *GetItemsQueries queries) returns Item|errorGet a single Item by key
Parameters
- itemCode string - Key property 'ItemCode' (Edm.String)
- queries *GetItemsQueries - Queries to be sent with the request
deleteItems
Delete a Item
Parameters
- itemCode string - Key property 'ItemCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateItems
Partially update a Item (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
itemsCancel
Bound action 'Cancel' on Items (binding type Item)
Parameters
- itemCode string - Key property 'ItemCode' (Edm.String)
Return Type
- error? - Success. No content returned
itemsServiceInitData
Init data
listLengthMeasures
function listLengthMeasures(ListLengthMeasuresHeaders headers, *ListLengthMeasuresQueries queries) returns LengthMeasuresCollectionResponse|errorQuery the LengthMeasures collection
Parameters
- headers ListLengthMeasuresHeaders (default {}) - Headers to be sent with the request
- queries *ListLengthMeasuresQueries - Queries to be sent with the request
Return Type
- LengthMeasuresCollectionResponse|error - A page of entities
createLengthMeasures
function createLengthMeasures(LengthMeasure payload, map<string|string[]> headers) returns LengthMeasure|errorCreate a new LengthMeasure
Parameters
- payload LengthMeasure - Request payload
Return Type
- LengthMeasure|error - The created entity
getLengthMeasures
function getLengthMeasures(Signed32 unitCode, map<string|string[]> headers, *GetLengthMeasuresQueries queries) returns LengthMeasure|errorGet a single LengthMeasure by key
Parameters
- unitCode Signed32 - Key property 'UnitCode' (Edm.Int32)
- queries *GetLengthMeasuresQueries - Queries to be sent with the request
Return Type
- LengthMeasure|error - The requested entity
deleteLengthMeasures
Delete a LengthMeasure
Parameters
- unitCode Signed32 - Key property 'UnitCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateLengthMeasures
function updateLengthMeasures(Signed32 unitCode, LengthMeasure payload, map<string|string[]> headers) returns error?Partially update a LengthMeasure (PATCH/MERGE semantics)
Parameters
- unitCode Signed32 - Key property 'UnitCode' (Edm.Int32)
- payload LengthMeasure - Request payload
Return Type
- error? - Updated. No content returned
listManufacturers
function listManufacturers(ListManufacturersHeaders headers, *ListManufacturersQueries queries) returns ManufacturersCollectionResponse|errorQuery the Manufacturers collection
Parameters
- headers ListManufacturersHeaders (default {}) - Headers to be sent with the request
- queries *ListManufacturersQueries - Queries to be sent with the request
Return Type
- ManufacturersCollectionResponse|error - A page of entities
createManufacturers
function createManufacturers(Manufacturer payload, map<string|string[]> headers) returns Manufacturer|errorCreate a new Manufacturer
Parameters
- payload Manufacturer - Request payload
Return Type
- Manufacturer|error - The created entity
getManufacturers
function getManufacturers(Signed32 code, map<string|string[]> headers, *GetManufacturersQueries queries) returns Manufacturer|errorGet a single Manufacturer by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetManufacturersQueries - Queries to be sent with the request
Return Type
- Manufacturer|error - The requested entity
deleteManufacturers
Delete a Manufacturer
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateManufacturers
function updateManufacturers(Signed32 code, Manufacturer payload, map<string|string[]> headers) returns error?Partially update a Manufacturer (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listMaterialRevaluation
function listMaterialRevaluation(ListMaterialRevaluationHeaders headers, *ListMaterialRevaluationQueries queries) returns MaterialRevaluationCollectionResponse|errorQuery the MaterialRevaluation collection
Parameters
- headers ListMaterialRevaluationHeaders (default {}) - Headers to be sent with the request
- queries *ListMaterialRevaluationQueries - Queries to be sent with the request
Return Type
- MaterialRevaluationCollectionResponse|error - A page of entities
createMaterialRevaluation
function createMaterialRevaluation(MaterialRevaluation payload, map<string|string[]> headers) returns MaterialRevaluation|errorCreate a new MaterialRevaluation
Parameters
- payload MaterialRevaluation - Request payload
Return Type
- MaterialRevaluation|error - The created entity
getMaterialRevaluation
function getMaterialRevaluation(Signed32 docEntry, map<string|string[]> headers, *GetMaterialRevaluationQueries queries) returns MaterialRevaluation|errorGet a single MaterialRevaluation by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetMaterialRevaluationQueries - Queries to be sent with the request
Return Type
- MaterialRevaluation|error - The requested entity
deleteMaterialRevaluation
Delete a MaterialRevaluation
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateMaterialRevaluation
function updateMaterialRevaluation(Signed32 docEntry, MaterialRevaluation payload, map<string|string[]> headers) returns error?Partially update a MaterialRevaluation (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload MaterialRevaluation - Request payload
Return Type
- error? - Updated. No content returned
materialRevaluationCancel
Bound action 'Cancel' on MaterialRevaluation (binding type MaterialRevaluation)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
materialRevaluationClose
Bound action 'Close' on MaterialRevaluation (binding type MaterialRevaluation)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
materialRevaluationFIFOServiceGetMaterialRevaluationFIFO
function materialRevaluationFIFOServiceGetMaterialRevaluationFIFO(MaterialRevaluationFIFOService_GetMaterialRevaluationFIFO_body payload, map<string|string[]> headers) returns MaterialRevaluationFIFO|errorGet material revaluation FIFO
Parameters
- payload MaterialRevaluationFIFOService_GetMaterialRevaluationFIFO_body - Request payload
Return Type
- MaterialRevaluationFIFO|error - Function result
materialRevaluationSNBServiceAdd
function materialRevaluationSNBServiceAdd(MaterialRevaluationSNBService_Add_body payload, map<string|string[]> headers) returns MaterialRevaluationSNBParams|errorAdd
Parameters
- payload MaterialRevaluationSNBService_Add_body - Request payload
Return Type
- MaterialRevaluationSNBParams|error - Function result
materialRevaluationSNBServiceGetList
function materialRevaluationSNBServiceGetList(MaterialRevaluationSNBService_GetList_body payload, map<string|string[]> headers) returns inline_response_200_10|errorGet list
Parameters
- payload MaterialRevaluationSNBService_GetList_body - Request payload
Return Type
- inline_response_200_10|error - Function result
listPackagesTypes
function listPackagesTypes(ListPackagesTypesHeaders headers, *ListPackagesTypesQueries queries) returns PackagesTypesCollectionResponse|errorQuery the PackagesTypes collection
Parameters
- headers ListPackagesTypesHeaders (default {}) - Headers to be sent with the request
- queries *ListPackagesTypesQueries - Queries to be sent with the request
Return Type
- PackagesTypesCollectionResponse|error - A page of entities
createPackagesTypes
function createPackagesTypes(PackagesType payload, map<string|string[]> headers) returns PackagesType|errorCreate a new PackagesType
Parameters
- payload PackagesType - Request payload
Return Type
- PackagesType|error - The created entity
getPackagesTypes
function getPackagesTypes(Signed32 code, map<string|string[]> headers, *GetPackagesTypesQueries queries) returns PackagesType|errorGet a single PackagesType by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetPackagesTypesQueries - Queries to be sent with the request
Return Type
- PackagesType|error - The requested entity
deletePackagesTypes
Delete a PackagesType
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePackagesTypes
function updatePackagesTypes(Signed32 code, PackagesType payload, map<string|string[]> headers) returns error?Partially update a PackagesType (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listPickLists
function listPickLists(ListPickListsHeaders headers, *ListPickListsQueries queries) returns PickListsCollectionResponse|errorQuery the PickLists collection
Parameters
- headers ListPickListsHeaders (default {}) - Headers to be sent with the request
- queries *ListPickListsQueries - Queries to be sent with the request
Return Type
- PickListsCollectionResponse|error - A page of entities
createPickLists
Create a new PickList
Parameters
- payload PickList - Request payload
getPickLists
function getPickLists(Signed32 absoluteentry, map<string|string[]> headers, *GetPickListsQueries queries) returns PickList|errorGet a single PickList by key
Parameters
- absoluteentry Signed32 - Key property 'Absoluteentry' (Edm.Int32)
- queries *GetPickListsQueries - Queries to be sent with the request
deletePickLists
Delete a PickList
Parameters
- absoluteentry Signed32 - Key property 'Absoluteentry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePickLists
function updatePickLists(Signed32 absoluteentry, PickList payload, map<string|string[]> headers) returns error?Partially update a PickList (PATCH/MERGE semantics)
Parameters
- absoluteentry Signed32 - Key property 'Absoluteentry' (Edm.Int32)
- payload PickList - Request payload
Return Type
- error? - Updated. No content returned
pickListsGetReleasedAllocation
function pickListsGetReleasedAllocation(Signed32 absoluteentry, map<string|string[]> headers) returns PickList|errorBound action 'GetReleasedAllocation' on PickLists (binding type PickList)
Parameters
- absoluteentry Signed32 - Key property 'Absoluteentry' (Edm.Int32)
pickListsServiceClose
function pickListsServiceClose(PickListsService_Close_body payload, map<string|string[]> headers) returns error?Close
Parameters
- payload PickListsService_Close_body - Request payload
Return Type
- error? - Success. No content returned
pickListsServiceUpdateReleasedAllocation
function pickListsServiceUpdateReleasedAllocation(PickListsService_UpdateReleasedAllocation_body payload, map<string|string[]> headers) returns error?Update released allocation
Parameters
- payload PickListsService_UpdateReleasedAllocation_body - Request payload
Return Type
- error? - Success. No content returned
listPriceLists
function listPriceLists(ListPriceListsHeaders headers, *ListPriceListsQueries queries) returns PriceListsCollectionResponse|errorQuery the PriceLists collection
Parameters
- headers ListPriceListsHeaders (default {}) - Headers to be sent with the request
- queries *ListPriceListsQueries - Queries to be sent with the request
Return Type
- PriceListsCollectionResponse|error - A page of entities
createPriceLists
Create a new PriceList
Parameters
- payload PriceList - Request payload
getPriceLists
function getPriceLists(Signed32 priceListNo, map<string|string[]> headers, *GetPriceListsQueries queries) returns PriceList|errorGet a single PriceList by key
Parameters
- priceListNo Signed32 - Key property 'PriceListNo' (Edm.Int32)
- queries *GetPriceListsQueries - Queries to be sent with the request
deletePriceLists
Delete a PriceList
Parameters
- priceListNo Signed32 - Key property 'PriceListNo' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updatePriceLists
function updatePriceLists(Signed32 priceListNo, PriceList payload, map<string|string[]> headers) returns error?Partially update a PriceList (PATCH/MERGE semantics)
Parameters
- priceListNo Signed32 - Key property 'PriceListNo' (Edm.Int32)
- payload PriceList - Request payload
Return Type
- error? - Updated. No content returned
listSerialNumberDetails
function listSerialNumberDetails(ListSerialNumberDetailsHeaders headers, *ListSerialNumberDetailsQueries queries) returns SerialNumberDetailsCollectionResponse|errorQuery the SerialNumberDetails collection
Parameters
- headers ListSerialNumberDetailsHeaders (default {}) - Headers to be sent with the request
- queries *ListSerialNumberDetailsQueries - Queries to be sent with the request
Return Type
- SerialNumberDetailsCollectionResponse|error - A page of entities
createSerialNumberDetails
function createSerialNumberDetails(SerialNumberDetail payload, map<string|string[]> headers) returns SerialNumberDetail|errorCreate a new SerialNumberDetail
Parameters
- payload SerialNumberDetail - Request payload
Return Type
- SerialNumberDetail|error - The created entity
getSerialNumberDetails
function getSerialNumberDetails(Signed32 docEntry, map<string|string[]> headers, *GetSerialNumberDetailsQueries queries) returns SerialNumberDetail|errorGet a single SerialNumberDetail by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetSerialNumberDetailsQueries - Queries to be sent with the request
Return Type
- SerialNumberDetail|error - The requested entity
deleteSerialNumberDetails
Delete a SerialNumberDetail
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateSerialNumberDetails
function updateSerialNumberDetails(Signed32 docEntry, SerialNumberDetail payload, map<string|string[]> headers) returns error?Partially update a SerialNumberDetail (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload SerialNumberDetail - Request payload
Return Type
- error? - Updated. No content returned
listShippingTypes
function listShippingTypes(ListShippingTypesHeaders headers, *ListShippingTypesQueries queries) returns ShippingTypesCollectionResponse|errorQuery the ShippingTypes collection
Parameters
- headers ListShippingTypesHeaders (default {}) - Headers to be sent with the request
- queries *ListShippingTypesQueries - Queries to be sent with the request
Return Type
- ShippingTypesCollectionResponse|error - A page of entities
createShippingTypes
function createShippingTypes(ShippingType payload, map<string|string[]> headers) returns ShippingType|errorCreate a new ShippingType
Parameters
- payload ShippingType - Request payload
Return Type
- ShippingType|error - The created entity
getShippingTypes
function getShippingTypes(Signed32 code, map<string|string[]> headers, *GetShippingTypesQueries queries) returns ShippingType|errorGet a single ShippingType by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetShippingTypesQueries - Queries to be sent with the request
Return Type
- ShippingType|error - The requested entity
deleteShippingTypes
Delete a ShippingType
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateShippingTypes
function updateShippingTypes(Signed32 code, ShippingType payload, map<string|string[]> headers) returns error?Partially update a ShippingType (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
listSpecialPrices
function listSpecialPrices(ListSpecialPricesHeaders headers, *ListSpecialPricesQueries queries) returns SpecialPricesCollectionResponse|errorQuery the SpecialPrices collection
Parameters
- headers ListSpecialPricesHeaders (default {}) - Headers to be sent with the request
- queries *ListSpecialPricesQueries - Queries to be sent with the request
Return Type
- SpecialPricesCollectionResponse|error - A page of entities
createSpecialPrices
function createSpecialPrices(SpecialPrice payload, map<string|string[]> headers) returns SpecialPrice|errorCreate a new SpecialPrice
Parameters
- payload SpecialPrice - Request payload
Return Type
- SpecialPrice|error - The created entity
getSpecialPrices
function getSpecialPrices(string itemCode, string cardCode, map<string|string[]> headers, *GetSpecialPricesQueries queries) returns SpecialPrice|errorGet a single SpecialPrice by key
Parameters
- itemCode string - Composite key part 'ItemCode' (Edm.String)
- cardCode string - Composite key part 'CardCode' (Edm.String)
- queries *GetSpecialPricesQueries - Queries to be sent with the request
Return Type
- SpecialPrice|error - The requested entity
deleteSpecialPrices
function deleteSpecialPrices(string itemCode, string cardCode, map<string|string[]> headers) returns error?Delete a SpecialPrice
Parameters
- itemCode string - Composite key part 'ItemCode' (Edm.String)
- cardCode string - Composite key part 'CardCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateSpecialPrices
function updateSpecialPrices(string itemCode, string cardCode, SpecialPrice payload, map<string|string[]> headers) returns error?Partially update a SpecialPrice (PATCH/MERGE semantics)
Parameters
- itemCode string - Composite key part 'ItemCode' (Edm.String)
- cardCode string - Composite key part 'CardCode' (Edm.String)
- payload SpecialPrice - Request payload
Return Type
- error? - Updated. No content returned
listStockTakings
function listStockTakings(ListStockTakingsHeaders headers, *ListStockTakingsQueries queries) returns StockTakingsCollectionResponse|errorQuery the StockTakings collection
Parameters
- headers ListStockTakingsHeaders (default {}) - Headers to be sent with the request
- queries *ListStockTakingsQueries - Queries to be sent with the request
Return Type
- StockTakingsCollectionResponse|error - A page of entities
createStockTakings
function createStockTakings(StockTaking payload, map<string|string[]> headers) returns StockTaking|errorCreate a new StockTaking
Parameters
- payload StockTaking - Request payload
Return Type
- StockTaking|error - The created entity
getStockTakings
function getStockTakings(string itemCode, string warehouseCode, map<string|string[]> headers, *GetStockTakingsQueries queries) returns StockTaking|errorGet a single StockTaking by key
Parameters
- itemCode string - Composite key part 'ItemCode' (Edm.String)
- warehouseCode string - Composite key part 'WarehouseCode' (Edm.String)
- queries *GetStockTakingsQueries - Queries to be sent with the request
Return Type
- StockTaking|error - The requested entity
deleteStockTakings
function deleteStockTakings(string itemCode, string warehouseCode, map<string|string[]> headers) returns error?Delete a StockTaking
Parameters
- itemCode string - Composite key part 'ItemCode' (Edm.String)
- warehouseCode string - Composite key part 'WarehouseCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateStockTakings
function updateStockTakings(string itemCode, string warehouseCode, StockTaking payload, map<string|string[]> headers) returns error?Partially update a StockTaking (PATCH/MERGE semantics)
Parameters
- itemCode string - Composite key part 'ItemCode' (Edm.String)
- warehouseCode string - Composite key part 'WarehouseCode' (Edm.String)
- payload StockTaking - Request payload
Return Type
- error? - Updated. No content returned
stockTransferDraftServiceGetApprovalTemplates
function stockTransferDraftServiceGetApprovalTemplates(StockTransferDraftService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns StockTransfer|errorGet approval templates
Parameters
- payload StockTransferDraftService_GetApprovalTemplates_body - Request payload
Return Type
- StockTransfer|error - Function result
stockTransferDraftServiceHandleApprovalRequest
function stockTransferDraftServiceHandleApprovalRequest(map<string|string[]> headers) returns error?Handle approval request
Return Type
- error? - Success. No content returned
listStockTransferDrafts
function listStockTransferDrafts(ListStockTransferDraftsHeaders headers, *ListStockTransferDraftsQueries queries) returns StockTransferDraftsCollectionResponse|errorQuery the StockTransferDrafts collection
Parameters
- headers ListStockTransferDraftsHeaders (default {}) - Headers to be sent with the request
- queries *ListStockTransferDraftsQueries - Queries to be sent with the request
Return Type
- StockTransferDraftsCollectionResponse|error - A page of entities
createStockTransferDrafts
function createStockTransferDrafts(StockTransfer payload, map<string|string[]> headers) returns StockTransfer|errorCreate a new StockTransfer
Parameters
- payload StockTransfer - Request payload
Return Type
- StockTransfer|error - The created entity
getStockTransferDrafts
function getStockTransferDrafts(Signed32 docEntry, map<string|string[]> headers, *GetStockTransferDraftsQueries queries) returns StockTransfer|errorGet a single StockTransfer by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetStockTransferDraftsQueries - Queries to be sent with the request
Return Type
- StockTransfer|error - The requested entity
deleteStockTransferDrafts
Delete a StockTransfer
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateStockTransferDrafts
function updateStockTransferDrafts(Signed32 docEntry, StockTransfer payload, map<string|string[]> headers) returns error?Partially update a StockTransfer (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload StockTransfer - Request payload
Return Type
- error? - Updated. No content returned
stockTransferDraftsCancel
Bound action 'Cancel' on StockTransferDrafts (binding type StockTransfer)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
stockTransferDraftsClose
Bound action 'Close' on StockTransferDrafts (binding type StockTransfer)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
stockTransferDraftsSaveDraftToDocument
function stockTransferDraftsSaveDraftToDocument(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'SaveDraftToDocument' on StockTransferDrafts (binding type StockTransfer)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
stockTransferServiceGetApprovalTemplates
function stockTransferServiceGetApprovalTemplates(StockTransferService_GetApprovalTemplates_body payload, map<string|string[]> headers) returns StockTransfer|errorGet approval templates
Parameters
- payload StockTransferService_GetApprovalTemplates_body - Request payload
Return Type
- StockTransfer|error - Function result
stockTransferServiceHandleApprovalRequest
Handle approval request
Return Type
- error? - Success. No content returned
listStockTransfers
function listStockTransfers(ListStockTransfersHeaders headers, *ListStockTransfersQueries queries) returns StockTransfersCollectionResponse|errorQuery the StockTransfers collection
Parameters
- headers ListStockTransfersHeaders (default {}) - Headers to be sent with the request
- queries *ListStockTransfersQueries - Queries to be sent with the request
Return Type
- StockTransfersCollectionResponse|error - A page of entities
createStockTransfers
function createStockTransfers(StockTransfer payload, map<string|string[]> headers) returns StockTransfer|errorCreate a new StockTransfer
Parameters
- payload StockTransfer - Request payload
Return Type
- StockTransfer|error - The created entity
getStockTransfers
function getStockTransfers(Signed32 docEntry, map<string|string[]> headers, *GetStockTransfersQueries queries) returns StockTransfer|errorGet a single StockTransfer by key
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- queries *GetStockTransfersQueries - Queries to be sent with the request
Return Type
- StockTransfer|error - The requested entity
deleteStockTransfers
Delete a StockTransfer
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateStockTransfers
function updateStockTransfers(Signed32 docEntry, StockTransfer payload, map<string|string[]> headers) returns error?Partially update a StockTransfer (PATCH/MERGE semantics)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
- payload StockTransfer - Request payload
Return Type
- error? - Updated. No content returned
stockTransfersCancel
Bound action 'Cancel' on StockTransfers (binding type StockTransfer)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
stockTransfersClose
Bound action 'Close' on StockTransfers (binding type StockTransfer)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
stockTransfersSaveDraftToDocument
function stockTransfersSaveDraftToDocument(Signed32 docEntry, map<string|string[]> headers) returns error?Bound action 'SaveDraftToDocument' on StockTransfers (binding type StockTransfer)
Parameters
- docEntry Signed32 - Key property 'DocEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
listTrackingNotes
function listTrackingNotes(ListTrackingNotesHeaders headers, *ListTrackingNotesQueries queries) returns TrackingNotesCollectionResponse|errorQuery the TrackingNotes collection
Parameters
- headers ListTrackingNotesHeaders (default {}) - Headers to be sent with the request
- queries *ListTrackingNotesQueries - Queries to be sent with the request
Return Type
- TrackingNotesCollectionResponse|error - A page of entities
createTrackingNotes
function createTrackingNotes(TrackingNote payload, map<string|string[]> headers) returns TrackingNote|errorCreate a new TrackingNote
Parameters
- payload TrackingNote - Request payload
Return Type
- TrackingNote|error - The created entity
getTrackingNotes
function getTrackingNotes(Signed32 trackingNoteNumber, map<string|string[]> headers, *GetTrackingNotesQueries queries) returns TrackingNote|errorGet a single TrackingNote by key
Parameters
- trackingNoteNumber Signed32 - Key property 'TrackingNoteNumber' (Edm.Int32)
- queries *GetTrackingNotesQueries - Queries to be sent with the request
Return Type
- TrackingNote|error - The requested entity
deleteTrackingNotes
function deleteTrackingNotes(Signed32 trackingNoteNumber, map<string|string[]> headers) returns error?Delete a TrackingNote
Parameters
- trackingNoteNumber Signed32 - Key property 'TrackingNoteNumber' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateTrackingNotes
function updateTrackingNotes(Signed32 trackingNoteNumber, TrackingNote payload, map<string|string[]> headers) returns error?Partially update a TrackingNote (PATCH/MERGE semantics)
Parameters
- trackingNoteNumber Signed32 - Key property 'TrackingNoteNumber' (Edm.Int32)
- payload TrackingNote - Request payload
Return Type
- error? - Updated. No content returned
trackingNotesServiceGetList
function trackingNotesServiceGetList(map<string|string[]> headers) returns inline_response_200_11|errorGet list
Return Type
- inline_response_200_11|error - Function result
listUnitOfMeasurementGroups
function listUnitOfMeasurementGroups(ListUnitOfMeasurementGroupsHeaders headers, *ListUnitOfMeasurementGroupsQueries queries) returns UnitOfMeasurementGroupsCollectionResponse|errorQuery the UnitOfMeasurementGroups collection
Parameters
- headers ListUnitOfMeasurementGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListUnitOfMeasurementGroupsQueries - Queries to be sent with the request
Return Type
- UnitOfMeasurementGroupsCollectionResponse|error - A page of entities
createUnitOfMeasurementGroups
function createUnitOfMeasurementGroups(UnitOfMeasurementGroup payload, map<string|string[]> headers) returns UnitOfMeasurementGroup|errorCreate a new UnitOfMeasurementGroup
Parameters
- payload UnitOfMeasurementGroup - Request payload
Return Type
- UnitOfMeasurementGroup|error - The created entity
getUnitOfMeasurementGroups
function getUnitOfMeasurementGroups(Signed32 absEntry, map<string|string[]> headers, *GetUnitOfMeasurementGroupsQueries queries) returns UnitOfMeasurementGroup|errorGet a single UnitOfMeasurementGroup by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetUnitOfMeasurementGroupsQueries - Queries to be sent with the request
Return Type
- UnitOfMeasurementGroup|error - The requested entity
deleteUnitOfMeasurementGroups
function deleteUnitOfMeasurementGroups(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a UnitOfMeasurementGroup
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateUnitOfMeasurementGroups
function updateUnitOfMeasurementGroups(Signed32 absEntry, UnitOfMeasurementGroup payload, map<string|string[]> headers) returns error?Partially update a UnitOfMeasurementGroup (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload UnitOfMeasurementGroup - Request payload
Return Type
- error? - Updated. No content returned
unitOfMeasurementGroupsServiceGetList
function unitOfMeasurementGroupsServiceGetList(map<string|string[]> headers) returns inline_response_200_12|errorGet list
Return Type
- inline_response_200_12|error - Function result
listUnitOfMeasurements
function listUnitOfMeasurements(ListUnitOfMeasurementsHeaders headers, *ListUnitOfMeasurementsQueries queries) returns UnitOfMeasurementsCollectionResponse|errorQuery the UnitOfMeasurements collection
Parameters
- headers ListUnitOfMeasurementsHeaders (default {}) - Headers to be sent with the request
- queries *ListUnitOfMeasurementsQueries - Queries to be sent with the request
Return Type
- UnitOfMeasurementsCollectionResponse|error - A page of entities
createUnitOfMeasurements
function createUnitOfMeasurements(UnitOfMeasurement payload, map<string|string[]> headers) returns UnitOfMeasurement|errorCreate a new UnitOfMeasurement
Parameters
- payload UnitOfMeasurement - Request payload
Return Type
- UnitOfMeasurement|error - The created entity
getUnitOfMeasurements
function getUnitOfMeasurements(Signed32 absEntry, map<string|string[]> headers, *GetUnitOfMeasurementsQueries queries) returns UnitOfMeasurement|errorGet a single UnitOfMeasurement by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetUnitOfMeasurementsQueries - Queries to be sent with the request
Return Type
- UnitOfMeasurement|error - The requested entity
deleteUnitOfMeasurements
Delete a UnitOfMeasurement
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateUnitOfMeasurements
function updateUnitOfMeasurements(Signed32 absEntry, UnitOfMeasurement payload, map<string|string[]> headers) returns error?Partially update a UnitOfMeasurement (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload UnitOfMeasurement - Request payload
Return Type
- error? - Updated. No content returned
unitOfMeasurementsServiceGetList
function unitOfMeasurementsServiceGetList(map<string|string[]> headers) returns inline_response_200_13|errorGet list
Return Type
- inline_response_200_13|error - Function result
listWarehouseLocations
function listWarehouseLocations(ListWarehouseLocationsHeaders headers, *ListWarehouseLocationsQueries queries) returns WarehouseLocationsCollectionResponse|errorQuery the WarehouseLocations collection
Parameters
- headers ListWarehouseLocationsHeaders (default {}) - Headers to be sent with the request
- queries *ListWarehouseLocationsQueries - Queries to be sent with the request
Return Type
- WarehouseLocationsCollectionResponse|error - A page of entities
createWarehouseLocations
function createWarehouseLocations(WarehouseLocation payload, map<string|string[]> headers) returns WarehouseLocation|errorCreate a new WarehouseLocation
Parameters
- payload WarehouseLocation - Request payload
Return Type
- WarehouseLocation|error - The created entity
getWarehouseLocations
function getWarehouseLocations(Signed32 code, map<string|string[]> headers, *GetWarehouseLocationsQueries queries) returns WarehouseLocation|errorGet a single WarehouseLocation by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetWarehouseLocationsQueries - Queries to be sent with the request
Return Type
- WarehouseLocation|error - The requested entity
deleteWarehouseLocations
Delete a WarehouseLocation
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateWarehouseLocations
function updateWarehouseLocations(Signed32 code, WarehouseLocation payload, map<string|string[]> headers) returns error?Partially update a WarehouseLocation (PATCH/MERGE semantics)
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- payload WarehouseLocation - Request payload
Return Type
- error? - Updated. No content returned
listWarehouseSublevelCodes
function listWarehouseSublevelCodes(ListWarehouseSublevelCodesHeaders headers, *ListWarehouseSublevelCodesQueries queries) returns WarehouseSublevelCodesCollectionResponse|errorQuery the WarehouseSublevelCodes collection
Parameters
- headers ListWarehouseSublevelCodesHeaders (default {}) - Headers to be sent with the request
- queries *ListWarehouseSublevelCodesQueries - Queries to be sent with the request
Return Type
- WarehouseSublevelCodesCollectionResponse|error - A page of entities
createWarehouseSublevelCodes
function createWarehouseSublevelCodes(WarehouseSublevelCode payload, map<string|string[]> headers) returns WarehouseSublevelCode|errorCreate a new WarehouseSublevelCode
Parameters
- payload WarehouseSublevelCode - Request payload
Return Type
- WarehouseSublevelCode|error - The created entity
getWarehouseSublevelCodes
function getWarehouseSublevelCodes(Signed32 absEntry, map<string|string[]> headers, *GetWarehouseSublevelCodesQueries queries) returns WarehouseSublevelCode|errorGet a single WarehouseSublevelCode by key
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- queries *GetWarehouseSublevelCodesQueries - Queries to be sent with the request
Return Type
- WarehouseSublevelCode|error - The requested entity
deleteWarehouseSublevelCodes
function deleteWarehouseSublevelCodes(Signed32 absEntry, map<string|string[]> headers) returns error?Delete a WarehouseSublevelCode
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateWarehouseSublevelCodes
function updateWarehouseSublevelCodes(Signed32 absEntry, WarehouseSublevelCode payload, map<string|string[]> headers) returns error?Partially update a WarehouseSublevelCode (PATCH/MERGE semantics)
Parameters
- absEntry Signed32 - Key property 'AbsEntry' (Edm.Int32)
- payload WarehouseSublevelCode - Request payload
Return Type
- error? - Updated. No content returned
warehouseSublevelCodesServiceGetList
function warehouseSublevelCodesServiceGetList(map<string|string[]> headers) returns inline_response_200_14|errorGet list
Return Type
- inline_response_200_14|error - Function result
listWarehouses
function listWarehouses(ListWarehousesHeaders headers, *ListWarehousesQueries queries) returns WarehousesCollectionResponse|errorQuery the Warehouses collection
Parameters
- headers ListWarehousesHeaders (default {}) - Headers to be sent with the request
- queries *ListWarehousesQueries - Queries to be sent with the request
Return Type
- WarehousesCollectionResponse|error - A page of entities
createWarehouses
Create a new Warehouse
Parameters
- payload Warehouse - Request payload
getWarehouses
function getWarehouses(string warehouseCode, map<string|string[]> headers, *GetWarehousesQueries queries) returns Warehouse|errorGet a single Warehouse by key
Parameters
- warehouseCode string - Key property 'WarehouseCode' (Edm.String)
- queries *GetWarehousesQueries - Queries to be sent with the request
deleteWarehouses
Delete a Warehouse
Parameters
- warehouseCode string - Key property 'WarehouseCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateWarehouses
function updateWarehouses(string warehouseCode, Warehouse payload, map<string|string[]> headers) returns error?Partially update a Warehouse (PATCH/MERGE semantics)
Parameters
- warehouseCode string - Key property 'WarehouseCode' (Edm.String)
- payload Warehouse - Request payload
Return Type
- error? - Updated. No content returned
listWeightMeasures
function listWeightMeasures(ListWeightMeasuresHeaders headers, *ListWeightMeasuresQueries queries) returns WeightMeasuresCollectionResponse|errorQuery the WeightMeasures collection
Parameters
- headers ListWeightMeasuresHeaders (default {}) - Headers to be sent with the request
- queries *ListWeightMeasuresQueries - Queries to be sent with the request
Return Type
- WeightMeasuresCollectionResponse|error - A page of entities
createWeightMeasures
function createWeightMeasures(WeightMeasure payload, map<string|string[]> headers) returns WeightMeasure|errorCreate a new WeightMeasure
Parameters
- payload WeightMeasure - Request payload
Return Type
- WeightMeasure|error - The created entity
getWeightMeasures
function getWeightMeasures(Signed32 unitCode, map<string|string[]> headers, *GetWeightMeasuresQueries queries) returns WeightMeasure|errorGet a single WeightMeasure by key
Parameters
- unitCode Signed32 - Key property 'UnitCode' (Edm.Int32)
- queries *GetWeightMeasuresQueries - Queries to be sent with the request
Return Type
- WeightMeasure|error - The requested entity
deleteWeightMeasures
Delete a WeightMeasure
Parameters
- unitCode Signed32 - Key property 'UnitCode' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateWeightMeasures
function updateWeightMeasures(Signed32 unitCode, WeightMeasure payload, map<string|string[]> headers) returns error?Partially update a WeightMeasure (PATCH/MERGE semantics)
Parameters
- unitCode Signed32 - Key property 'UnitCode' (Edm.Int32)
- payload WeightMeasure - 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.inventory: AddressExtension
The AddressExtension complex type of the SAP Business One Service Layer
Fields
- ShipToStreet? string -
- ShipToStreetNo? string -
- ShipToBlock? string -
- ShipToBuilding? string -
- ShipToCity? string -
- ShipToZipCode? string -
- ShipToCounty? string -
- ShipToState? string -
- ShipToCountry? string -
- ShipToAddressType? string -
- BillToStreet? string -
- BillToStreetNo? string -
- BillToBlock? string -
- BillToBuilding? string -
- BillToCity? string -
- BillToZipCode? string -
- BillToCounty? string -
- BillToState? string -
- BillToCountry? string -
- BillToAddressType? string -
- ShipToGlobalLocationNumber? string -
- BillToGlobalLocationNumber? string -
- ShipToAddress2? string -
- ShipToAddress3? string -
- BillToAddress2? string -
- BillToAddress3? string -
- PlaceOfSupply? string -
- PurchasePlaceOfSupply? string -
- DocEntry? Signed32 -
- GoodsIssuePlaceBP? string -
- GoodsIssuePlaceCNPJ? string -
- GoodsIssuePlaceCPF? string -
- GoodsIssuePlaceStreet? string -
- GoodsIssuePlaceStreetNo? string -
- GoodsIssuePlaceBuilding? string -
- GoodsIssuePlaceZip? string -
- GoodsIssuePlaceBlock? string -
- GoodsIssuePlaceCity? string -
- GoodsIssuePlaceCounty? string -
- GoodsIssuePlaceState? string -
- GoodsIssuePlaceCountry? string -
- GoodsIssuePlacePhone? string -
- GoodsIssuePlaceEMail? string -
- GoodsIssuePlaceDepartureDate? string -
- DeliveryPlaceBP? string -
- DeliveryPlaceCNPJ? string -
- DeliveryPlaceCPF? string -
- DeliveryPlaceStreet? string -
- DeliveryPlaceStreetNo? string -
- DeliveryPlaceBuilding? string -
- DeliveryPlaceZip? string -
- DeliveryPlaceBlock? string -
- DeliveryPlaceCity? string -
- DeliveryPlaceCounty? string -
- DeliveryPlaceState? string -
- DeliveryPlaceCountry? string -
- DeliveryPlacePhone? string -
- DeliveryPlaceEMail? string -
- DeliveryPlaceDepartureDate? string -
- ShipToStreetForReturn? string -
- ShipToStreetNoForReturn? string -
- ShipToBlockForReturn? string -
- ShipToBuildingForReturn? string -
- ShipToCityForReturn? string -
- ShipToZipCodeForReturn? string -
- ShipToCountyForReturn? string -
- ShipToStateForReturn? string -
- ShipToCountryForReturn? string -
- ShipToAddressTypeForReturn? string -
- ShipToGlobalLocationNumberForReturn? string -
- ShipToAddress2ForReturn? string -
- ShipToAddress3ForReturn? string -
sap.businessone.inventory: AlternateCatNum
The AlternateCatNum entity of the SAP Business One Service Layer
Fields
- ItemCode? string -
- CardCode? string -
- Substitute? string -
- DisplayBPCatalogNumber? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsDefault? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Description? string -
- Item? Item - The
Itementity of the SAP Business One Service Layer
sap.businessone.inventory: AlternateCatNumCollectionResponse
A paged collection of AlternateCatNum entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AlternateCatNum[] -
- odataNextLink? string -
sap.businessone.inventory: AlternativeItem
The AlternativeItem complex type of the SAP Business One Service Layer
Fields
- matchFactor? decimal -
- remarks? string -
- alternativeItemCode? string -
sap.businessone.inventory: AlternativeItemsService_AddItem_body
Represents the request payload for the AlternativeItemsService_AddItem operation of the SAP Business One Service Layer
Fields
- originalItem? OriginalItem -
sap.businessone.inventory: AlternativeItemsService_DeleteItem_body
Represents the request payload for the AlternativeItemsService_DeleteItem operation of the SAP Business One Service Layer
Fields
- originalItemParams? OriginalItemParams -
sap.businessone.inventory: AlternativeItemsService_GetItem_body
Represents the request payload for the AlternativeItemsService_GetItem operation of the SAP Business One Service Layer
Fields
- originalItemParams? OriginalItemParams -
sap.businessone.inventory: AlternativeItemsService_UpdateItem_body
Represents the request payload for the AlternativeItemsService_UpdateItem operation of the SAP Business One Service Layer
Fields
- originalItem? OriginalItem -
sap.businessone.inventory: AttributeGroup
The AttributeGroup entity of the SAP Business One Service Layer
Fields
- locked? BoYesNoEnum -
- attributeGroupCollection? AttributeGroupLine[] -
- code? Signed32 -
- name? string -
sap.businessone.inventory: AttributeGroupLine
The AttributeGroupLine complex type of the SAP Business One Service Layer
Fields
- defaultValue? string -
- sortNumber? Signed32 -
- attributeID? Signed32 -
- attributeName? string -
- code? Signed32 -
- fieldType? AttributeGroupFieldTypeEnum -
sap.businessone.inventory: AttributeGroupParams
The AttributeGroupParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 -
- name? string -
sap.businessone.inventory: AttributeGroupsCollectionResponse
A paged collection of AttributeGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AttributeGroup[] -
- odataNextLink? string -
sap.businessone.inventory: BarCode
The BarCode entity of the SAP Business One Service Layer
Fields
- freeText? string -
- item? Item -
- uoMEntry? Signed32 -
- unitOfMeasurement? UnitOfMeasurement -
- barcode? string -
- itemNo? string -
- absEntry? Signed32 -
sap.businessone.inventory: BarCodeParams
The BarCodeParams complex type of the SAP Business One Service Layer
Fields
- uoMEntry? Signed32 -
- barcode? string -
- itemNo? string -
- absEntry? Signed32 -
sap.businessone.inventory: BarCodesCollectionResponse
A paged collection of BarCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BarCode[] -
- odataNextLink? string -
sap.businessone.inventory: BatchNumber
The BatchNumber complex type of the SAP Business One Service Layer
Fields
- BatchNumber? string -
- ManufacturerSerialNumber? string -
- InternalSerialNumber? string -
- ExpiryDate? string -
- ManufacturingDate? string -
- AddmisionDate? string -
- Location? string -
- Notes? string -
- Quantity? decimal -
- BaseLineNumber? Signed32 -
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- ItemCode? string -
- SystemSerialNumber? Signed32 -
sap.businessone.inventory: BatchNumberDetail
The BatchNumberDetail entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- Status? BatchDetailServiceStatusEnum - OData EnumType 'BatchDetailServiceStatusEnum'. Serialised by the Service Layer as the member name
- Batch? string -
- BatchAttribute1? string -
- BatchAttribute2? string -
- AdmissionDate? string -
- ManufacturingDate? string -
- ExpirationDate? string -
- Details? string -
- SystemNumber? Signed32 -
- Item? Item - The
Itementity of the SAP Business One Service Layer
sap.businessone.inventory: BatchNumberDetailsCollectionResponse
A paged collection of BatchNumberDetails entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BatchNumberDetail[] -
- odataNextLink? string -
sap.businessone.inventory: BinLocation
The BinLocation entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 -
- Warehouse? string -
- Sublevel1? string -
- Sublevel2? string -
- Sublevel3? string -
- Sublevel4? string -
- BinCode? string -
- Inactive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Description? string -
- AlternativeSortCode? string -
- BarCode? string -
- Attribute1? string -
- Attribute2? string -
- Attribute3? string -
- Attribute4? string -
- Attribute5? string -
- Attribute6? string -
- Attribute7? string -
- Attribute8? string -
- Attribute9? string -
- Attribute10? string -
- RestrictedItemType? BinRestrictItemEnum - OData EnumType 'BinRestrictItemEnum'. Serialised by the Service Layer as the member name
- SpecificItem? string -
- SpecificItemGroup? Signed32 -
- BatchRestrictions? BinRestrictionBatchEnum - OData EnumType 'BinRestrictionBatchEnum'. Serialised by the Service Layer as the member name
- RestrictedTransType? BinRestrictTransactionEnum - OData EnumType 'BinRestrictTransactionEnum'. Serialised by the Service Layer as the member name
- RestrictionReason? string -
- DateRestrictionChanged? string -
- MinimumQty? decimal -
- MaximumQty? decimal -
- IsSystemBin? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReceivingBinLocation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExcludeAutoAllocOnIssue? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MaximumWeight? decimal -
- MaximumWeight1? decimal -
- MaximumWeightUnit? Signed32 -
- MaximumWeightUnit1? Signed32 -
- RestrictedUoMType? BinRestrictUoMEnum - OData EnumType 'BinRestrictUoMEnum'. Serialised by the Service Layer as the member name
- SpecificUoM? Signed32 -
- SpecificUoMGroup? Signed32 -
- Warehouses? Warehouse[] -
- Warehouse2? Warehouse - The
Warehouseentity of the SAP Business One Service Layer
- Item? Item - The
Itementity of the SAP Business One Service Layer
- ItemGroups? ItemGroups - The
ItemGroupsentity of the SAP Business One Service Layer
- WeightMeasure? WeightMeasure - The
WeightMeasureentity of the SAP Business One Service Layer
- UnitOfMeasurement? UnitOfMeasurement - The
UnitOfMeasuremententity of the SAP Business One Service Layer
- UnitOfMeasurementGroup? UnitOfMeasurementGroup - The
UnitOfMeasurementGroupentity of the SAP Business One Service Layer
sap.businessone.inventory: BinLocationAttribute
The BinLocationAttribute entity of the SAP Business One Service Layer
Fields
- binLocationField? BinLocationField -
- attribute? Signed32 -
- absEntry? Signed32 -
- code? string -
sap.businessone.inventory: BinLocationAttributeParams
The BinLocationAttributeParams complex type of the SAP Business One Service Layer
Fields
- attribute? Signed32 -
- absEntry? Signed32 -
- code? string -
sap.businessone.inventory: BinLocationAttributesCollectionResponse
A paged collection of BinLocationAttributes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BinLocationAttribute[] -
- odataNextLink? string -
sap.businessone.inventory: BinLocationField
The BinLocationField entity of the SAP Business One Service Layer
Fields
- fieldNumber? Signed32 -
- activated? BoYesNoEnum -
- binLocationAttributes? BinLocationAttribute[] -
- warehouseSublevelCodes? WarehouseSublevelCode[] -
- defaultFieldName? string -
- absEntry? Signed32 -
- fieldType? BinLocationFieldTypeEnum -
- name? string -
sap.businessone.inventory: BinLocationFieldParams
The BinLocationFieldParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
sap.businessone.inventory: BinLocationFieldsCollectionResponse
A paged collection of BinLocationFields entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BinLocationField[] -
- odataNextLink? string -
sap.businessone.inventory: BinLocationParams
The BinLocationParams complex type of the SAP Business One Service Layer
Fields
- binCode? string -
- absEntry? Signed32 -
sap.businessone.inventory: BinLocationsCollectionResponse
A paged collection of BinLocations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BinLocation[] -
- odataNextLink? string -
sap.businessone.inventory: CCDNumber
The CCDNumber complex type of the SAP Business One Service Layer
Fields
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- CCDNumber? string -
- Quantity? decimal -
- CountryOfOrigin? string -
- SubLineNumber? Signed32 -
- DocumentEntry? Signed32 -
- BaseLineNumber? Signed32 -
- ChildNumber? Signed32 -
sap.businessone.inventory: 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.inventory: CustomsGroup
The CustomsGroup entity of the SAP Business One Service Layer
Fields
- Code? Signed32 -
- Name? string -
- Number? string -
- Customs? decimal -
- Purchase? decimal -
- Other? decimal -
- Total? decimal -
- Locked? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CustomsAllocationAccount? string -
- CustomsExpenseAccount? string -
- PortAddress? string -
- PortState? string -
- Items? Item[] -
sap.businessone.inventory: CustomsGroupsCollectionResponse
A paged collection of CustomsGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CustomsGroup[] -
- odataNextLink? string -
sap.businessone.inventory: CycleCountDetermination
The CycleCountDetermination entity of the SAP Business One Service Layer
Fields
- cycleBy? CycleCountDeterminationCycleByEnum -
- warehouseCode? string -
- cycleCountDeterminationSetupCollection? CycleCountDeterminationSetup[] -
sap.businessone.inventory: CycleCountDeterminationParams
The CycleCountDeterminationParams complex type of the SAP Business One Service Layer
Fields
- cycleBy? Signed32 -
- warehouseCode? string -
sap.businessone.inventory: CycleCountDeterminationsCollectionResponse
A paged collection of CycleCountDeterminations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CycleCountDetermination[] -
- odataNextLink? string -
sap.businessone.inventory: CycleCountDeterminationSetup
The CycleCountDeterminationSetup complex type of the SAP Business One Service Layer
Fields
- excludeItemsWithZeroQuantity? BoYesNoEnum -
- entry? Signed32 -
- cycleCode? Signed32 -
- alert? BoYesNoEnum -
- time? string -
- nextCountingDate? string -
- warehouseCode? string -
- destinationUser? Signed32 -
- changeExistingItems? BoYesNoEnum -
sap.businessone.inventory: DiscountGroupLine
The DiscountGroupLine complex type of the SAP Business One Service Layer
Fields
- freeQuantity? decimal -
- objectType? DiscountGroupBaseObjectEnum -
- discount? decimal -
- maximumFreeQuantity? decimal -
- discountType? DiscountGroupDiscountTypeEnum -
- absEntry? Signed32 -
- objectCode? string -
- paidQuantity? decimal -
sap.businessone.inventory: DocExpenseTaxJurisdiction
The DocExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
sap.businessone.inventory: DocFreightEBooksDetail
The DocFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
sap.businessone.inventory: DocLinePickList
The DocLinePickList complex type of the SAP Business One Service Layer
Fields
- pickListLineNum? Signed32 -
- pickListBatchAndBinLineNum? Signed32 -
- pickListEntry? Signed32 -
sap.businessone.inventory: Document
The Document entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- DocNum? Signed32 -
- DocType? BoDocumentTypes - OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Printed? PrintStatusEnum - OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
- DocDate? string -
- DocDueDate? string -
- CardCode? string -
- CardName? string -
- Address? string -
- NumAtCard? string -
- DocTotal? decimal -
- AttachmentEntry? Signed32 -
- DocCurrency? string -
- DocRate? decimal -
- Reference1? string -
- Reference2? string -
- Comments? string -
- JournalMemo? string -
- PaymentGroupCode? Signed32 -
- DocTime? string -
- SalesPersonCode? Signed32 -
- TransportationCode? Signed32 -
- Confirmed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ImportFileNum? Signed32 -
- SummeryType? BoDocSummaryTypes - OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
- ContactPersonCode? Signed32 -
- ShowSCN? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Series? Signed32 -
- TaxDate? string -
- PartialSupply? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocObjectCode? BoObjectTypes - OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
- ShipToCode? string -
- Indicator? string -
- FederalTaxID? string -
- DiscountPercent? decimal -
- PaymentReference? string -
- CreationDate? string -
- UpdateDate? string -
- FinancialPeriod? Signed32 -
- UserSign? Signed32 -
- TransNum? Signed32 -
- VatSum? decimal -
- VatSumSys? decimal -
- VatSumFc? decimal -
- NetProcedure? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocTotalFc? decimal -
- DocTotalSys? decimal -
- Form1099? Signed32 -
- Box1099? string -
- RevisionPo? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RequriedDate? string -
- CancelDate? string -
- BlockDunning? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Submitted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Segment? Signed32 -
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Pick? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentMethod? string -
- PaymentBlock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentBlockEntry? Signed32 -
- CentralBankIndicator? string -
- MaximumCashDiscount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Reserve? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Project? string -
- ExemptionValidityDateFrom? string -
- ExemptionValidityDateTo? string -
- WareHouseUpdateType? BoDocWhsUpdateTypes - OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
- Rounding? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExternalCorrectedDocNum? string -
- InternalCorrectedDocNum? Signed32 -
- NextCorrectingDocument? Signed32 -
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxExemptionLetterNum? string -
- WTApplied? decimal -
- WTAppliedFC? decimal -
- BillOfExchangeReserved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgentCode? string -
- WTAppliedSC? decimal -
- TotalEqualizationTax? decimal -
- TotalEqualizationTaxFC? decimal -
- TotalEqualizationTaxSC? decimal -
- NumberOfInstallments? Signed32 -
- ApplyTaxOnFirstInstallment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxOnInstallments? BoTaxOnInstallmentsTypeEnum - OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
- WTNonSubjectAmount? decimal -
- WTNonSubjectAmountSC? decimal -
- WTNonSubjectAmountFC? decimal -
- WTExemptedAmount? decimal -
- WTExemptedAmountSC? decimal -
- WTExemptedAmountFC? decimal -
- BaseAmount? decimal -
- BaseAmountSC? decimal -
- BaseAmountFC? decimal -
- WTAmount? decimal -
- WTAmountSC? decimal -
- WTAmountFC? decimal -
- VatDate? string -
- DocumentsOwner? Signed32 -
- FolioPrefixString? string -
- FolioNumber? Signed32 -
- DocumentSubType? BoDocumentSubType - OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
- BPChannelCode? string -
- BPChannelContact? Signed32 -
- Address2? string -
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PeriodIndicator? string -
- PayToCode? string -
- ManualNumber? string -
- UseShpdGoodsAct? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsPayToBank? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PayToBankCountry? string -
- PayToBankCode? string -
- PayToBankAccountNo? string -
- PayToBankBranch? string -
- BPL_IDAssignedToInvoice? Signed32 -
- DownPayment? decimal -
- ReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LanguageCode? Signed32 -
- TrackingNumber? string -
- PickRemark? string -
- ClosingDate? string -
- SequenceCode? Signed32 -
- SequenceSerial? Signed32 -
- SeriesString? string -
- SubSeriesString? string -
- SequenceModel? string -
- UseCorrectionVATGroup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TotalDiscount? decimal -
- DownPaymentAmount? decimal -
- DownPaymentPercentage? decimal -
- DownPaymentType? DownPaymentTypeEnum - OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
- DownPaymentAmountSC? decimal -
- DownPaymentAmountFC? decimal -
- VatPercent? decimal -
- ServiceGrossProfitPercent? decimal -
- OpeningRemarks? string -
- ClosingRemarks? string -
- RoundingDiffAmount? decimal -
- RoundingDiffAmountFC? decimal -
- RoundingDiffAmountSC? decimal -
- Cancelled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SignatureInputMessage? string -
- SignatureDigest? string -
- CertificationNumber? string -
- PrivateKeyVersion? Signed32 -
- ControlAccount? string -
- InsuranceOperation347? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArchiveNonremovableSalesQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GTSChecker? Signed32 -
- GTSPayee? Signed32 -
- ExtraMonth? Signed32 -
- ExtraDays? Signed32 -
- CashDiscountDateOffset? Signed32 -
- StartFrom? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- NTSApproved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ETaxWebSite? Signed32 -
- ETaxNumber? string -
- NTSApprovedNumber? string -
- EDocGenerationType? EDocGenerationTypeEnum - OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
- EDocSeries? Signed32 -
- EDocNum? string -
- EDocExportFormat? Signed32 -
- EDocStatus? EDocStatusEnum - OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
- EDocErrorCode? string -
- EDocErrorMessage? string -
- DownPaymentStatus? BoSoStatus - OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
- GroupSeries? Signed32 -
- GroupNumber? Signed32 -
- GroupHandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenOriginalDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenManuallyClosedOrCanceledDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateOnlineQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POSEquipmentNumber? string -
- POSManufacturerSerialNumber? string -
- POSCashierNumber? Signed32 -
- ApplyCurrentVATRatesForDownPaymentsToDraw? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ClosingOption? ClosingOptionEnum - OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
- SpecifiedClosingDate? string -
- OpenForLandedCosts? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AuthorizationStatus? DocumentAuthorizationStatusEnum - OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
- TotalDiscountFC? decimal -
- TotalDiscountSC? decimal -
- RelevantToGTS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLName? string -
- VATRegNum? string -
- AnnualInvoiceDeclarationReference? Signed32 -
- Supplier? string -
- Releaser? Signed32 -
- Receiver? Signed32 -
- BlanketAgreementNumber? Signed32 -
- IsAlteration? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CancelStatus? CancelStatusEnum - OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
- DraftKey? Signed32 -
- AssetValueDate? string -
- Requester? string -
- RequesterName? string -
- RequesterBranch? Signed32 -
- RequesterDepartment? Signed32 -
- RequesterEmail? string -
- SendNotification? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReqType? Signed32 -
- ReqCode? string -
- InvoicePayment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocumentDelivery? DocumentDeliveryTypeEnum - OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
- AuthorizationCode? string -
- StartDeliveryDate? string -
- StartDeliveryTime? string -
- EndDeliveryDate? string -
- EndDeliveryTime? string -
- VehiclePlate? string -
- ATDocumentType? string -
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string -
- ReuseDocumentNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReuseNotaFiscalNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrintSEPADirect? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FiscalDocNum? string -
- POSDailySummaryNo? Signed32 -
- POSReceiptNo? Signed32 -
- PointOfIssueCode? string -
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 -
- FolioNumberTo? Signed32 -
- InterimType? BoInterimDocTypes - OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
- RelatedType? Signed32 -
- RelatedEntry? Signed32 -
- SAPPassport? string -
- DocumentTaxID? string -
- DateOfReportingControlStatementVAT? string -
- ReportingSectionControlStatementVAT? string -
- ExcludeFromTaxReportControlStatementVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POS_CashRegister? Signed32 -
- UpdateTime? string -
- CreateQRCodeFrom? string -
- PriceMode? PriceModeDocumentEnum - OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
- PriceListNum? Signed32 -
- DownPaymentTrasactionID? string -
- OriginalRefNo? string -
- OriginalRefDate? string -
- Revision? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GSTTransactionType? GSTTransactionTypeEnum - OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
- OriginalCreditOrDebitNo? string -
- OriginalCreditOrDebitDate? string -
- ECommerceOperator? string -
- ECommerceGSTIN? string -
- TaxInvoiceNo? string -
- TaxInvoiceDate? string -
- ShipFrom? string -
- CommissionTrade? CommissionTradeTypeEnum - OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
- CommissionTradeReturn? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseBillToAddrToDetermineTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IssuingReason? Signed32 -
- Cig? Signed32 -
- Cup? Signed32 -
- EDocType? EDocTypeEnum - OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
- FCEAsPaymentMeans? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- FatherCard? string -
- FatherType? BoFatherCardTypes - OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
- ShipState? string -
- ShipPlace? string -
- CustOffice? string -
- FCI? string -
- AddLegIn? string -
- LegTextF? Signed32 -
- DANFELgTxt? string -
- DataVersion? Signed32 -
- LastPageFolioNumber? Signed32 -
- InventoryStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PlasticPackagingTaxRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NotRelevantForMonthlyInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EndAt? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- ShipToCodeForReturn? string -
- AddressForReturn? string -
- Document_ApprovalRequests? DocumentApprovalRequest[] -
- DocumentLines? DocumentLine[] -
- EWayBillDetails? EWayBillDetails - The
EWayBillDetailscomplex type of the SAP Business One Service Layer
- EDeliveryInfo? EDeliveryInfo - The
EDeliveryInfocomplex type of the SAP Business One Service Layer
- ElectronicProtocols? ElectronicProtocol[] -
- DocumentAdditionalExpenses? DocumentAdditionalExpense[] -
- DocumentDistributedExpenses? DocumentDistributedExpense[] -
- WithholdingTaxDataWTXCollection? WithholdingTaxDataWTX[] -
- WithholdingTaxDataCollection? WithholdingTaxData[] -
- DocumentPackages? DocumentPackage[] -
- DocumentSpecialLines? DocumentSpecialLine[] -
- DocumentInstallments? DocumentInstallment[] -
- DownPaymentsToDraw? DownPaymentToDraw[] -
- TaxExtension? TaxExtension - The
TaxExtensioncomplex type of the SAP Business One Service Layer
- AddressExtension? AddressExtension - The
AddressExtensioncomplex type of the SAP Business One Service Layer
- DocumentReferences? DocumentReference[] -
- DocumentAdditionalIntrastatExpenses? DocumentAdditionalIntrastatExpense[] -
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseType? Signed32 -
- BaseEntry? Signed32 -
- IndFinal? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AllocationNumberIL? string -
- DigitalPayToAddress? string -
- DigitalPayments? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SirenNumber? string -
- SiretNumber? string -
- RoutingCode? string -
- Suffix? string -
- SOIWizardId? Signed32 -
- ShippingType? ShippingType - The
ShippingTypeentity of the SAP Business One Service Layer
- PriceList? PriceList - The
PriceListentity of the SAP Business One Service Layer
sap.businessone.inventory: DocumentAdditionalExpense
The DocumentAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- Remarks? string -
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string -
- TaxPercent? decimal -
- TaxSum? decimal -
- TaxSumFC? decimal -
- TaxSumSys? decimal -
- DeductibleTaxSum? decimal -
- DeductibleTaxSumFC? decimal -
- DeductibleTaxSumSys? decimal -
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string -
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal -
- TaxPaidFC? decimal -
- TaxPaidSys? decimal -
- EqualizationTaxPercent? decimal -
- EqualizationTaxSum? decimal -
- EqualizationTaxFC? decimal -
- EqualizationTaxSys? decimal -
- TaxTotalSum? decimal -
- TaxTotalSumFC? decimal -
- TaxTotalSumSys? decimal -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- LineNum? Signed32 -
- LastPurchasePrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- Stock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetType? Signed32 -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule? string -
- Project? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- LineGross? decimal -
- LineGrossSys? decimal -
- LineGrossFC? decimal -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocExpenseTaxJurisdictions? DocExpenseTaxJurisdiction[] -
- DocFreightEBooksDetails? DocFreightEBooksDetail[] -
sap.businessone.inventory: DocumentAdditionalIntrastatExpense
The DocumentAdditionalIntrastatExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- LineNum? Signed32 -
sap.businessone.inventory: DocumentApprovalRequest
The Document_ApprovalRequest complex type of the SAP Business One Service Layer
Fields
- activeForUpdate? BoYesNoEnum -
- approvalTemplatesID? Signed32 -
- remarks? string -
- approvalTemplatesName? string -
sap.businessone.inventory: DocumentCloseParams
The DocumentCloseParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
- specifiedClosingDate? string -
- closingOption? ClosingOptionEnum -
sap.businessone.inventory: DocumentDistributedExpense
The DocumentDistributedExpense complex type of the SAP Business One Service Layer
sap.businessone.inventory: DocumentInstallment
The DocumentInstallment complex type of the SAP Business One Service Layer
Fields
- DueDate? string -
- Percentage? decimal -
- Total? decimal -
- LastDunningDate? string -
- DunningLevel? Signed32 -
- TotalFC? decimal -
- InstallmentId? Signed32 -
- PaymentOrdered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal -
- PaidToDateFC? decimal -
sap.businessone.inventory: DocumentLine
The DocumentLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- Quantity? decimal -
- ShipDate? string -
- Price? decimal -
- PriceAfterVAT? decimal -
- Currency? string -
- Rate? decimal -
- DiscountPercent? decimal -
- VendorNum? string -
- SerialNum? string -
- WarehouseCode? string -
- SalesPersonCode? Signed32 -
- CommisionPercent? decimal -
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- AccountCode? string -
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SupplierCatNum? string -
- CostingCode? string -
- ProjectCode? string -
- BarCode? string -
- VatGroup? string -
- Height1? decimal -
- Hight1Unit? Signed32 -
- Height2? decimal -
- Height2Unit? Signed32 -
- Lengh1? decimal -
- Lengh1Unit? Signed32 -
- Lengh2? decimal -
- Lengh2Unit? Signed32 -
- Weight1? decimal -
- Weight1Unit? Signed32 -
- Weight2? decimal -
- Weight2Unit? Signed32 -
- Factor1? decimal -
- Factor2? decimal -
- Factor3? decimal -
- Factor4? decimal -
- BaseType? Signed32 -
- BaseEntry? Signed32 -
- BaseLine? Signed32 -
- Volume? decimal -
- VolumeUnit? Signed32 -
- Width1? decimal -
- Width1Unit? Signed32 -
- Width2? decimal -
- Width2Unit? Signed32 -
- Address? string -
- TaxCode? string -
- TaxType? BoTaxTypes - OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickQuantity? decimal -
- PickListIdNumber? Signed32 -
- OriginalItem? string -
- BackOrder? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string -
- ShippingMethod? Signed32 -
- POTargetNum? Signed32 -
- POTargetEntry? string -
- POTargetRowNum? Signed32 -
- CorrectionInvoiceItem? BoCorInvItemStatus - OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
- CorrInvAmountToStock? decimal -
- CorrInvAmountToDiffAcct? decimal -
- AppliedTax? decimal -
- AppliedTaxFC? decimal -
- AppliedTaxSC? decimal -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EqualizationTaxPercent? decimal -
- TotalEqualizationTax? decimal -
- TotalEqualizationTaxFC? decimal -
- TotalEqualizationTaxSC? decimal -
- NetTaxAmount? decimal -
- NetTaxAmountFC? decimal -
- NetTaxAmountSC? decimal -
- MeasureUnit? string -
- UnitsOfMeasurment? decimal -
- LineTotal? decimal -
- TaxPercentagePerRow? decimal -
- TaxTotal? decimal -
- ConsumerSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExciseAmount? decimal -
- TaxPerUnit? decimal -
- TotalInclTax? decimal -
- CountryOrg? string -
- SWW? string -
- TransactionType? BoTransactionTypeEnum - OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
- DistributeExpense? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RowTotalFC? decimal -
- RowTotalSC? decimal -
- LastBuyInmPrice? decimal -
- LastBuyDistributeSumFc? decimal -
- LastBuyDistributeSumSc? decimal -
- LastBuyDistributeSum? decimal -
- StockDistributesumForeign? decimal -
- StockDistributesumSystem? decimal -
- StockDistributesum? decimal -
- StockInmPrice? decimal -
- PickStatusEx? BoDocumentLinePickStatus - OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
- TaxBeforeDPM? decimal -
- TaxBeforeDPMFC? decimal -
- TaxBeforeDPMSC? decimal -
- CFOPCode? string -
- CSTCode? string -
- Usage? Signed32 -
- TaxOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VisualOrder? Signed32 -
- BaseOpenQuantity? decimal -
- UnitPrice? decimal -
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PackageQuantity? decimal -
- Text? string -
- LineType? BoDocLineType - OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
- COGSCostingCode? string -
- COGSAccountCode? string -
- ChangeAssemlyBoMWarehouse? string -
- GrossBuyPrice? decimal -
- GrossBase? Signed32 -
- GrossProfitTotalBasePrice? decimal -
- CostingCode2? string -
- CostingCode3? string -
- CostingCode4? string -
- CostingCode5? string -
- ItemDetails? string -
- LocationCode? Signed32 -
- ActualDeliveryDate? string -
- RemainingOpenQuantity? decimal -
- OpenAmount? decimal -
- OpenAmountFC? decimal -
- OpenAmountSC? decimal -
- ExLineNo? string -
- RequiredDate? string -
- RequiredQuantity? decimal -
- COGSCostingCode2? string -
- COGSCostingCode3? string -
- COGSCostingCode4? string -
- COGSCostingCode5? string -
- CSTforIPI? string -
- CSTforPIS? string -
- CSTforCOFINS? string -
- CreditOriginCode? string -
- WithoutInventoryMovement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgreementNo? Signed32 -
- AgreementRowNumber? Signed32 -
- ActualBaseEntry? Signed32 -
- ActualBaseLine? Signed32 -
- DocEntry? Signed32 -
- Surpluses? decimal -
- DefectAndBreakup? decimal -
- Shortages? decimal -
- ConsiderQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PartialRetirement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RetirementQuantity? decimal -
- RetirementAPC? decimal -
- ThirdParty? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PoNum? string -
- PoItmNum? Signed32 -
- ExpenseType? string -
- ReceiptNumber? string -
- ExpenseOperationType? BoExpenseOperationTypeEnum - OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
- FederalTaxID? string -
- GrossProfit? decimal -
- GrossProfitFC? decimal -
- GrossProfitSC? decimal -
- PriceSource? DocumentPriceSourceEnum - OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
- EnableReturnCost? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReturnCost? decimal -
- LineVendor? string -
- ReturnAction? Signed32 -
- ReturnReason? Signed32 -
- StgSeqNum? Signed32 -
- StgEntry? Signed32 -
- StgDesc? string -
- UoMEntry? Signed32 -
- UoMCode? string -
- InventoryQuantity? decimal -
- RemainingOpenInventoryQuantity? decimal -
- ParentLineNum? Signed32 -
- Incoterms? Signed32 -
- TransportMode? Signed32 -
- NatureOfTransaction? Signed32 -
- DestinationCountryForImport? string -
- DestinationRegionForImport? Signed32 -
- OriginCountryForExport? string -
- OriginRegionForExport? Signed32 -
- ItemType? BoDocItemType - OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
- ChangeInventoryQuantityIndependently? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeOfChargeBP? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SACEntry? Signed32 -
- HSNEntry? Signed32 -
- GrossPrice? decimal -
- GrossTotal? decimal -
- GrossTotalFC? decimal -
- GrossTotalSC? decimal -
- NCMCode? Signed32 -
- NVECode? string -
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CtrSealQty? decimal -
- CNJPMan? string -
- CESTCode? Signed32 -
- UFFiscalBenefitCode? string -
- ReverseCharge? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ShipToCode? string -
- ShipToDescription? string -
- ShipFromCode? string -
- ShipFromDescription? string -
- OwnerCode? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- StandardItemIdentification? Signed32 -
- CommodityClassification? Signed32 -
- WeightOfRecycledPlastic? decimal -
- PlasticPackageExemptionReason? string -
- LegalText? string -
- Cig? Signed32 -
- Cup? Signed32 -
- OperatingProfit? decimal -
- OperatingProfitFC? decimal -
- OperatingProfitSC? decimal -
- NetIncome? decimal -
- NetIncomeFC? decimal -
- NetIncomeSC? decimal -
- CSTforIBS? string -
- CSTforCBS? string -
- CSTforIS? string -
- UnencumberedReason? Signed32 -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ListNum? Signed32 -
- RecognizedTaxCode? string -
- LineTaxJurisdictions? LineTaxJurisdiction[] -
- GeneratedAssets? GeneratedAsset[] -
- EBooksDetails? EBooksDetail[] -
- DocLinePickLists? DocLinePickList[] -
- DocumentLineAdditionalExpenses? DocumentLineAdditionalExpense[] -
- WithholdingTaxLines? WithholdingTaxLine[] -
- SerialNumbers? SerialNumber[] -
- BatchNumbers? BatchNumber[] -
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] -
- ExportProcesses? ExportProcess[] -
- CCDNumbers? CCDNumber[] -
- ImportProcesses? ImportProcess[] -
sap.businessone.inventory: DocumentLineAdditionalExpense
The DocumentLineAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 -
- GroupCode? Signed32 -
- ExpenseCode? Signed32 -
- LineTotal? decimal -
- LineTotalFC? decimal -
- LineTotalSys? decimal -
- PaidToDate? decimal -
- PaidToDateFC? decimal -
- PaidToDateSys? decimal -
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string -
- TaxPercent? decimal -
- TaxSum? decimal -
- TaxSumFC? decimal -
- TaxSumSys? decimal -
- DeductibleTaxSum? decimal -
- DeductibleTaxSumFC? decimal -
- DeductibleTaxSumSys? decimal -
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string -
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal -
- TaxPaidFC? decimal -
- TaxPaidSys? decimal -
- EqualizationTaxPercent? decimal -
- EqualizationTaxSum? decimal -
- EqualizationTaxFC? decimal -
- EqualizationTaxSys? decimal -
- TaxTotalSum? decimal -
- TaxTotalSumFC? decimal -
- TaxTotalSumSys? decimal -
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseGroup? Signed32 -
- DistributionRule? string -
- Project? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LineExpenseTaxJurisdictions? LineExpenseTaxJurisdiction[] -
- LineFreightEBooksDetails? LineFreightEBooksDetail[] -
sap.businessone.inventory: DocumentLinesBinAllocation
The DocumentLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 -
- Quantity? decimal -
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 -
- BaseLineNumber? Signed32 -
sap.businessone.inventory: DocumentPackage
The DocumentPackage complex type of the SAP Business One Service Layer
Fields
- Number? Signed32 -
- Type? string -
- TotalWeight? decimal -
- Units? Signed32 -
- DocumentPackageItems? DocumentPackageItem[] -
sap.businessone.inventory: DocumentPackageItem
The DocumentPackageItem complex type of the SAP Business One Service Layer
Fields
- PackageNumber? Signed32 -
- ItemCode? string -
- Quantity? decimal -
- UoMEntry? Signed32 -
- MeasureUnit? string -
- UnitsOfMeasurement? decimal -
sap.businessone.inventory: DocumentReference
The DocumentReference complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 -
- issueDate? string -
- issuerCode? string -
- extDocNum? string -
- lineNumber? Signed32 -
- refDocEntr? Signed32 -
- remark? string -
- refDocNum? Signed32 -
- issuerCNPJ? string -
- series? string -
- number? Signed32 -
- subSeries? string -
- linkRefTyp? LinkReferenceTypeEnum -
- refAmount? decimal -
- model? string -
- accessKey? string -
- refAccKey? string -
- refObjType? ReferencedObjectTypeEnum -
sap.businessone.inventory: DocumentSpecialLine
The DocumentSpecialLine complex type of the SAP Business One Service Layer
Fields
- subtotalSC? decimal -
- grossTotalFC? decimal -
- freight1? decimal -
- freight2? decimal -
- freight3SC? decimal -
- taxAmountSC? decimal -
- subtotal? decimal -
- freight3FC? decimal -
- freight2FC? decimal -
- orderNumber? Signed32 -
- afterLineNumber? Signed32 -
- freight1FC? decimal -
- grossTotalSC? decimal -
- lineNum? Signed32 -
- lineText? string -
- taxAmount? decimal -
- taxAmountFC? decimal -
- subtotalFC? decimal -
- grossTotal? decimal -
- freight2SC? decimal -
- freight3? decimal -
- freight1SC? decimal -
- lineType? BoDocSpecialLineType -
sap.businessone.inventory: DownPaymentToDraw
The DownPaymentToDraw complex type of the SAP Business One Service Layer
Fields
- taxFC? decimal -
- grossAmountToDraw? decimal -
- docEntry? Signed32 -
- grossAmountToDrawSC? decimal -
- tax? decimal -
- amountToDrawSC? decimal -
- rowNum? Signed32 -
- name? string -
- docInternalID? Signed32 -
- isGrossLine? BoYesNoEnum -
- details? string -
- postingDate? string -
- amountToDraw? decimal -
- taxSC? decimal -
- downPaymentType? DownPaymentTypeEnum -
- docNumber? Signed32 -
- grossAmountToDrawFC? decimal -
- downPaymentsToDrawDetails? DownPaymentToDrawDetails[] -
- dueDate? string -
- amountToDrawFC? decimal -
sap.businessone.inventory: DownPaymentToDrawDetails
The DownPaymentToDrawDetails complex type of the SAP Business One Service Layer
Fields
- seqNum? Signed32 -
- vatGroupCode? string -
- taxFC? decimal -
- grossAmountToDraw? decimal -
- docEntry? Signed32 -
- grossAmountToDrawSC? decimal -
- tax? decimal -
- taxAdjust? BoYesNoEnum -
- rowNum? Signed32 -
- amountToDrawSC? decimal -
- docInternalID? Signed32 -
- isGrossLine? BoYesNoEnum -
- amountToDraw? decimal -
- taxSC? decimal -
- grossAmountToDrawFC? decimal -
- lineType? LineTypeEnum -
- vatPercent? decimal -
- amountToDrawFC? decimal -
sap.businessone.inventory: EBooksDetail
The EBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
- RecType? Signed32 -
- StampDutyCategory? Signed32 -
- OtherTaxesCategory? Signed32 -
- FeesCategory? Signed32 -
sap.businessone.inventory: EDeliveryInfo
The EDeliveryInfo complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string -
- docEntry? Signed32 -
- moveType? Signed32 -
sap.businessone.inventory: ElectronicProtocol
The ElectronicProtocol complex type of the SAP Business One Service Layer
Fields
- ProtocolCode? ElectronicDocProtocolCodeEnum - OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
- GenerationType? ElectronicDocGenTypeEnum - OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
- MappingID? Signed32 -
- TestingMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Confirmation? string -
- EDocType? Signed32 -
- CFDiCancellationReason? string -
- CFDiCancellationResponse? string -
- RelatedDocuments? RelatedDocument[] -
- EBooksRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EBooksMARK? string -
- EBooksMARKofNegative? string -
- EBooksInvoiceType? string -
- EBooksInvoiceTypeofNegative? string -
- EBillingIRN? string -
- EETPKP? string -
- EETBKP? string -
- SignatureInputMessage? string -
- SignatureDigest? string -
- FechaTimbrado? string -
- SelloSAT? string -
- PaymentMethod? string -
- RfcProvCertif? string -
- NoCertificadoSAT? string -
- FPASequenceNumber? Signed32 -
- FPASendDateSDI? string -
- FPAProgressivo? string -
- ProtocolDescription? string -
- CFDiExport? string -
- EBillingAckNo? string -
- EBillingAckDt? string -
- EBillingSignedInvoice? string -
- EBillingSignedQRCode? string -
- EBillingResponseStatus? string -
- CFDiCancellationReference? string -
- EBooksQRCodePath? string -
- EBooksQRCodePathofNegative? string -
- CartaPorteID? string -
- EBooksDispatchDate? string -
- EBooksDispatchTime? string -
sap.businessone.inventory: EnhancedDiscountGroup
The EnhancedDiscountGroup entity of the SAP Business One Service Layer
Fields
- 'type? DiscountGroupTypeEnum -
- active? BoYesNoEnum -
- discountRelations? DiscountGroupRelationsEnum -
- validTo? string -
- validFrom? string -
- discountGroupLineCollection? DiscountGroupLine[] -
- absEntry? Signed32 -
- objectCode? string -
sap.businessone.inventory: EnhancedDiscountGroupParams
The EnhancedDiscountGroupParams complex type of the SAP Business One Service Layer
Fields
- 'type? DiscountGroupTypeEnum -
- absEntry? Signed32 -
- objectCode? string -
sap.businessone.inventory: EnhancedDiscountGroupsCollectionResponse
A paged collection of EnhancedDiscountGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EnhancedDiscountGroup[] -
- odataNextLink? string -
sap.businessone.inventory: EWayBillDetails
The EWayBillDetails complex type of the SAP Business One Service Layer
Fields
- billFromName? string -
- shipToStateGSTCode? string -
- transactionType? EWBTransactionTypeEnum -
- vehicleNo? string -
- eWayBillExpirationDate? string -
- dispatchFromAddress1? string -
- transporterName? string -
- billFromGSTIN? string -
- dispatchFromAddress2? string -
- dispatchFromZipCode? string -
- transporterID? string -
- billToName? string -
- supplyType? EWBSupplyTypeEnum -
- mainHSNEntry? Signed32 -
- shipToAddress2? string -
- shipToAddress1? string -
- distance? decimal -
- dispatchFromPlace? string -
- subType? Signed32 -
- shipToZipCode? string -
- transportationMode? Signed32 -
- transporterDocDate? string -
- vehicleType? string -
- transporterEntry? Signed32 -
- docEntry? Signed32 -
- documentType? string -
- billFromStateGSTCode? string -
- dispatchFromStateGSTCode? string -
- transporterDocNo? string -
- shipToPlace? string -
- billToGSTIN? string -
- transporterLineNumber? Signed32 -
- eWayBillNo? string -
- billToStateGSTCode? string -
- eWayBillDate? string -
sap.businessone.inventory: ExportProcess
The ExportProcess complex type of the SAP Business One Service Layer
Fields
- ladingBillTypeCode? Signed32 -
- quantityOfExportedItems? decimal -
- exportationNatureCode? Signed32 -
- ladingBillDate? string -
- natureOfExport? string -
- ladingBillNumber? string -
- lineNumber? Signed32 -
- exportationRegistryNumber? Signed32 -
- additionalItemSequentialNumber? Signed32 -
- exportationDeclarationDate? string -
- drawbackSuspensionRegime? string -
- merchandiseLeftCustomsDate? string -
- exportationDocumentTypeCode? Signed32 -
- exportationRegistryDate? string -
- exportationDeclarationNumber? Signed32 -
sap.businessone.inventory: FIFOLayer
The FIFOLayer complex type of the SAP Business One Service Layer
Fields
- TransactionSequenceNum? Signed32 -
- LayerID? Signed32 -
- Quantity? decimal -
- Price? decimal -
- LineTotal? decimal -
- BaseLine? Signed32 -
sap.businessone.inventory: GeneratedAsset
The GeneratedAsset complex type of the SAP Business One Service Layer
Fields
- status? GeneratedAssetStatusEnum -
- amount? decimal -
- serialNumber? string -
- remarks? string -
- docEntry? Signed32 -
- assetCode? string -
- lineNumber? Signed32 -
- visualOrder? Signed32 -
- amountSC? decimal -
sap.businessone.inventory: GetAlternateCatNumQueries
Represents the Queries record for the operation: getAlternateCatNum
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetAttributeGroupsQueries
Represents the Queries record for the operation: getAttributeGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetBarCodesQueries
Represents the Queries record for the operation: getBarCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetBatchNumberDetailsQueries
Represents the Queries record for the operation: getBatchNumberDetails
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetBinLocationAttributesQueries
Represents the Queries record for the operation: getBinLocationAttributes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetBinLocationFieldsQueries
Represents the Queries record for the operation: getBinLocationFields
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetBinLocationsQueries
Represents the Queries record for the operation: getBinLocations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetCustomsGroupsQueries
Represents the Queries record for the operation: getCustomsGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetCycleCountDeterminationsQueries
Represents the Queries record for the operation: getCycleCountDeterminations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetEnhancedDiscountGroupsQueries
Represents the Queries record for the operation: getEnhancedDiscountGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryCountingDraftsQueries
Represents the Queries record for the operation: getInventoryCountingDrafts
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryCountingsQueries
Represents the Queries record for the operation: getInventoryCountings
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryCyclesQueries
Represents the Queries record for the operation: getInventoryCycles
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryGenEntriesQueries
Represents the Queries record for the operation: getInventoryGenEntries
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryGenExitsQueries
Represents the Queries record for the operation: getInventoryGenExits
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryOpeningBalanceDraftsQueries
Represents the Queries record for the operation: getInventoryOpeningBalanceDrafts
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryOpeningBalancesQueries
Represents the Queries record for the operation: getInventoryOpeningBalances
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryPostingDraftsQueries
Represents the Queries record for the operation: getInventoryPostingDrafts
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryPostingsQueries
Represents the Queries record for the operation: getInventoryPostings
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetInventoryTransferRequestsQueries
Represents the Queries record for the operation: getInventoryTransferRequests
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetItemGroupsQueries
Represents the Queries record for the operation: getItemGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetItemImagesQueries
Represents the Queries record for the operation: getItemImages
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetItemPropertiesQueries
Represents the Queries record for the operation: getItemProperties
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetItemsQueries
Represents the Queries record for the operation: getItems
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetLengthMeasuresQueries
Represents the Queries record for the operation: getLengthMeasures
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetManufacturersQueries
Represents the Queries record for the operation: getManufacturers
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetMaterialRevaluationQueries
Represents the Queries record for the operation: getMaterialRevaluation
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetPackagesTypesQueries
Represents the Queries record for the operation: getPackagesTypes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetPickListsQueries
Represents the Queries record for the operation: getPickLists
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetPriceListsQueries
Represents the Queries record for the operation: getPriceLists
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetSerialNumberDetailsQueries
Represents the Queries record for the operation: getSerialNumberDetails
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetShippingTypesQueries
Represents the Queries record for the operation: getShippingTypes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetSpecialPricesQueries
Represents the Queries record for the operation: getSpecialPrices
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetStockTakingsQueries
Represents the Queries record for the operation: getStockTakings
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetStockTransferDraftsQueries
Represents the Queries record for the operation: getStockTransferDrafts
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetStockTransfersQueries
Represents the Queries record for the operation: getStockTransfers
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetTrackingNotesQueries
Represents the Queries record for the operation: getTrackingNotes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetUnitOfMeasurementGroupsQueries
Represents the Queries record for the operation: getUnitOfMeasurementGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetUnitOfMeasurementsQueries
Represents the Queries record for the operation: getUnitOfMeasurements
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetWarehouseLocationsQueries
Represents the Queries record for the operation: getWarehouseLocations
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetWarehousesQueries
Represents the Queries record for the operation: getWarehouses
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetWarehouseSublevelCodesQueries
Represents the Queries record for the operation: getWarehouseSublevelCodes
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: GetWeightMeasuresQueries
Represents the Queries record for the operation: getWeightMeasures
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.inventory: ImportProcess
The ImportProcess complex type of the SAP Business One Service Layer
Fields
- dateOfRegistryDIDSIDA? string -
- importationDocumentNumber? string -
- customsClearanceDate? string -
- additionalItemSequentialNumber? Signed32 -
- drawbackSuspensionRegime? string -
- typeOfImport? string -
- additionalFreightToNavyAuthority? decimal -
- drawbackRegimeConcessionAccountNumber? string -
- importationDocumentTypeCode? string -
- additionalNumber? string -
- additionalItemDiscountValue? decimal -
- lineNumber? Signed32 -
sap.businessone.inventory: IndividualCounter
The IndividualCounter complex type of the SAP Business One Service Layer
Fields
- counterType? CounterTypeEnum -
- counterName? string -
- counterNumber? Signed32 -
- counterVisualOrder? Signed32 -
- documentEntry? Signed32 -
- counterID? Signed32 -
sap.businessone.inventory: inline_response_200
Represents the response payload for the AttributeGroupsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? AttributeGroupParams[] -
sap.businessone.inventory: inline_response_200_1
Represents the response payload for the BarCodesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BarCodeParams[] -
sap.businessone.inventory: inline_response_200_10
Represents the response payload for the MaterialRevaluationSNBService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MaterialRevaluationSNBParams[] -
sap.businessone.inventory: inline_response_200_11
Represents the response payload for the TrackingNotesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? TrackingNoteParams[] -
sap.businessone.inventory: inline_response_200_12
Represents the response payload for the UnitOfMeasurementGroupsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UnitOfMeasurementGroupParams[] -
sap.businessone.inventory: inline_response_200_13
Represents the response payload for the UnitOfMeasurementsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UnitOfMeasurementParams[] -
sap.businessone.inventory: inline_response_200_14
Represents the response payload for the WarehouseSublevelCodesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WarehouseSublevelCodeParams[] -
sap.businessone.inventory: inline_response_200_2
Represents the response payload for the BinLocationAttributesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BinLocationAttributeParams[] -
sap.businessone.inventory: inline_response_200_3
Represents the response payload for the BinLocationFieldsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BinLocationFieldParams[] -
sap.businessone.inventory: inline_response_200_4
Represents the response payload for the BinLocationsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? BinLocationParams[] -
sap.businessone.inventory: inline_response_200_5
Represents the response payload for the CycleCountDeterminationsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? CycleCountDeterminationParams[] -
sap.businessone.inventory: inline_response_200_6
Represents the response payload for the EnhancedDiscountGroupsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? EnhancedDiscountGroupParams[] -
sap.businessone.inventory: inline_response_200_7
Represents the response payload for the InventoryCountingsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryCountingParams[] -
sap.businessone.inventory: inline_response_200_8
Represents the response payload for the InventoryOpeningBalancesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryOpeningBalanceParams[] -
sap.businessone.inventory: inline_response_200_9
Represents the response payload for the InventoryPostingsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryPostingParams[] -
sap.businessone.inventory: InventoryCounting
The InventoryCounting entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- Series? Signed32 -
- CountDate? string -
- CountTime? string -
- SingleCounterType? CounterTypeEnum - OData EnumType 'CounterTypeEnum'. Serialised by the Service Layer as the member name
- SingleCounterID? Signed32 -
- DocumentStatus? CountingDocumentStatusEnum - OData EnumType 'CountingDocumentStatusEnum'. Serialised by the Service Layer as the member name
- Remarks? string -
- Reference2? string -
- BranchID? Signed32 -
- DocObjectCodeEx? string -
- FinancialPeriod? Signed32 -
- PeriodIndicator? string -
- CountingType? CountingTypeEnum - OData EnumType 'CountingTypeEnum'. Serialised by the Service Layer as the member name
- AttachmentEntry? Signed32 -
- YearEndDate? string -
- TeamCounters? TeamCounter[] -
- IndividualCounters? IndividualCounter[] -
- InventoryCountingLines? InventoryCountingLine[] -
- InventoryCountingDocumentReferencesCollection? InventoryCountingDocumentReferences[] -
sap.businessone.inventory: InventoryCountingBatchNumber
The InventoryCountingBatchNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 -
- expiryDate? string -
- itemCode? string -
- addmisionDate? string -
- counterType? CounterTypeEnum -
- multipleCounterRole? MultipleCounterRoleEnum -
- batchNumber? string -
- manufactureDate? string -
- quantity? decimal -
- internalSerialNumber? string -
- systemSerialNumber? Signed32 -
- trackingNote? Signed32 -
- documentEntry? Signed32 -
- counterID? Signed32 -
- trackingNoteLine? Signed32 -
- notes? string -
- manufacturerSerialNumber? string -
- location? string -
sap.businessone.inventory: InventoryCountingDocumentReferences
The InventoryCountingDocumentReferences complex type of the SAP Business One Service Layer
Fields
- referencedDocEntry? Signed32 -
- referencedObjectType? ReferencedObjectTypeEnum -
- docEntry? Signed32 -
- externalReferencedDocNumber? string -
- issueDate? string -
- referencedDocNumber? Signed32 -
- lineNumber? Signed32 -
- remark? string -
sap.businessone.inventory: InventoryCountingDraft
The InventoryCountingDraft entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- Series? Signed32 -
- CountDate? string -
- CountTime? string -
- SingleCounterType? CounterTypeEnum - OData EnumType 'CounterTypeEnum'. Serialised by the Service Layer as the member name
- SingleCounterID? Signed32 -
- DocumentStatus? CountingDocumentStatusEnum - OData EnumType 'CountingDocumentStatusEnum'. Serialised by the Service Layer as the member name
- Remarks? string -
- Reference2? string -
- BranchID? Signed32 -
- DocObjectCodeEx? string -
- FinancialPeriod? Signed32 -
- PeriodIndicator? string -
- CountingType? CountingTypeEnum - OData EnumType 'CountingTypeEnum'. Serialised by the Service Layer as the member name
- AttachmentEntry? Signed32 -
- YearEndDate? string -
sap.businessone.inventory: InventoryCountingDraftsCollectionResponse
A paged collection of InventoryCountingDrafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryCountingDraft[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryCountingLine
The InventoryCountingLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- LineNumber? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- Freeze? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WarehouseCode? string -
- BinEntry? Signed32 -
- InWarehouseQuantity? decimal -
- Counted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UoMCode? string -
- BarCode? string -
- UoMCountedQuantity? decimal -
- ItemsPerUnit? decimal -
- CountedQuantity? decimal -
- Variance? decimal -
- VariancePercentage? decimal -
- VisualOrder? Signed32 -
- TargetEntry? Signed32 -
- TargetLine? Signed32 -
- TargetType? Signed32 -
- TargetReference? string -
- ProjectCode? string -
- Manufacturer? Signed32 -
- SupplierCatalogNo? string -
- PreferredVendor? string -
- CostingCode? string -
- CostingCode2? string -
- CostingCode3? string -
- CostingCode4? string -
- CostingCode5? string -
- Remarks? string -
- LineStatus? CountingLineStatusEnum - OData EnumType 'CountingLineStatusEnum'. Serialised by the Service Layer as the member name
- CounterType? CounterTypeEnum - OData EnumType 'CounterTypeEnum'. Serialised by the Service Layer as the member name
- CounterID? Signed32 -
- MultipleCounterRole? MultipleCounterRoleEnum - OData EnumType 'MultipleCounterRoleEnum'. Serialised by the Service Layer as the member name
- WeightOfRecycledPlastic? decimal -
- PlasticPackageExemptionReason? string -
- InventoryCountingLineUoMs? InventoryCountingLineUoM[] -
- InventoryCountingSerialNumbers? InventoryCountingSerialNumber[] -
- InventoryCountingBatchNumbers? InventoryCountingBatchNumber[] -
sap.businessone.inventory: InventoryCountingLineUoM
The InventoryCountingLineUoM complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- LineNumber? Signed32 -
- ChildNumber? Signed32 -
- UoMCountedQuantity? decimal -
- ItemsPerUnit? decimal -
- CountedQuantity? decimal -
- UoMCode? string -
- BarCode? string -
- CounterType? CounterTypeEnum - OData EnumType 'CounterTypeEnum'. Serialised by the Service Layer as the member name
- CounterID? Signed32 -
- MultipleCounterRole? MultipleCounterRoleEnum - OData EnumType 'MultipleCounterRoleEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: InventoryCountingParams
The InventoryCountingParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 -
- documentNumber? Signed32 -
sap.businessone.inventory: InventoryCountingsCollectionResponse
A paged collection of InventoryCountings entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryCounting[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryCountingSerialNumber
The InventoryCountingSerialNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 -
- warrantyStart? string -
- expiryDate? string -
- itemCode? string -
- counterType? CounterTypeEnum -
- multipleCounterRole? MultipleCounterRoleEnum -
- receptionDate? string -
- manufactureDate? string -
- warrantyEnd? string -
- batchID? string -
- quantity? decimal -
- internalSerialNumber? string -
- systemSerialNumber? Signed32 -
- trackingNote? Signed32 -
- documentEntry? Signed32 -
- counterID? Signed32 -
- trackingNoteLine? Signed32 -
- notes? string -
- manufacturerSerialNumber? string -
- location? string -
sap.businessone.inventory: InventoryCycles
The InventoryCycles entity of the SAP Business One Service Layer
Fields
- CycleCode? Signed32 -
- CycleName? string -
- Frequency? BoFrequency - OData EnumType 'BoFrequency'. Serialised by the Service Layer as the member name
- Day? Signed32 -
- Hour? string -
- NextCountingDate? string -
- Interval? Signed32 -
- Sunday? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Monday? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Tuesday? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Wednesday? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Thursday? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Friday? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Saturday? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RepeatOption? RepeatOptionEnum - OData EnumType 'RepeatOptionEnum'. Serialised by the Service Layer as the member name
- RecurrenceSequenceSpecifier? RecurrenceSequenceEnum - OData EnumType 'RecurrenceSequenceEnum'. Serialised by the Service Layer as the member name
- RecurrenceDayInMonth? Signed32 -
- RecurrenceMonth? Signed32 -
- RecurrenceDayOfWeek? RecurrenceDayOfWeekEnum - OData EnumType 'RecurrenceDayOfWeekEnum'. Serialised by the Service Layer as the member name
- endType? EndTypeEnum - OData EnumType 'EndTypeEnum'. Serialised by the Service Layer as the member name
- MaxOccurrence? Signed32 -
- SeriesEndDate? string -
- ItemGroups? ItemGroups[] -
- Items? Item[] -
sap.businessone.inventory: InventoryCyclesCollectionResponse
A paged collection of InventoryCycles entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryCycles[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryGenEntriesCollectionResponse
A paged collection of InventoryGenEntries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryGenEntryService_ApproveAndAdd_body
Represents the request payload for the InventoryGenEntryService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.inventory: InventoryGenEntryService_ApproveAndUpdate_body
Represents the request payload for the InventoryGenEntryService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.inventory: InventoryGenEntryService_CloseByDate_body
Represents the request payload for the InventoryGenEntryService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.inventory: InventoryGenEntryService_ExportEWayBill_body
Represents the request payload for the InventoryGenEntryService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.inventory: InventoryGenEntryService_GetApprovalTemplates_body
Represents the request payload for the InventoryGenEntryService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.inventory: InventoryGenExitsCollectionResponse
A paged collection of InventoryGenExits entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Document[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryGenExitService_ApproveAndAdd_body
Represents the request payload for the InventoryGenExitService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.inventory: InventoryGenExitService_ApproveAndUpdate_body
Represents the request payload for the InventoryGenExitService_ApproveAndUpdate operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.inventory: InventoryGenExitService_CloseByDate_body
Represents the request payload for the InventoryGenExitService_CloseByDate operation of the SAP Business One Service Layer
Fields
- documentCloseParams? DocumentCloseParams -
sap.businessone.inventory: InventoryGenExitService_ExportEWayBill_body
Represents the request payload for the InventoryGenExitService_ExportEWayBill operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.inventory: InventoryGenExitService_GetApprovalTemplates_body
Represents the request payload for the InventoryGenExitService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- document? Document -
sap.businessone.inventory: InventoryOpeningBalance
The InventoryOpeningBalance entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- PostingDate? string -
- DocumentDate? string -
- DocumentNumber? Signed32 -
- Series? Signed32 -
- Reference2? string -
- Remarks? string -
- BranchID? Signed32 -
- PriceSource? InventoryOpeningBalancePriceSourceEnum - OData EnumType 'InventoryOpeningBalancePriceSourceEnum'. Serialised by the Service Layer as the member name
- PriceList? Signed32 -
- JournalRemark? string -
- DocObjectCodeEx? string -
- PeriodIndicator? string -
- FinancialPeriod? Signed32 -
- AttachmentEntry? Signed32 -
- InventoryOpeningBalanceLines? InventoryOpeningBalanceLine[] -
sap.businessone.inventory: InventoryOpeningBalanceBatchNumber
The InventoryOpeningBalanceBatchNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 -
- expiryDate? string -
- itemCode? string -
- addmisionDate? string -
- batchNumber? string -
- manufactureDate? string -
- quantity? decimal -
- internalSerialNumber? string -
- systemSerialNumber? Signed32 -
- trackingNote? Signed32 -
- documentEntry? Signed32 -
- trackingNoteLine? Signed32 -
- notes? string -
- manufacturerSerialNumber? string -
- location? string -
sap.businessone.inventory: InventoryOpeningBalanceCCDNumber
The InventoryOpeningBalanceCCDNumber complex type of the SAP Business One Service Layer
Fields
- cCDNumber? string -
- baseLineNumber? Signed32 -
- subLineNumber? Signed32 -
- trackingNote? Signed32 -
- countryOfOrigin? string -
- documentEntry? Signed32 -
- quantity? decimal -
- childNumber? Signed32 -
- trackingNoteLine? Signed32 -
sap.businessone.inventory: InventoryOpeningBalanceDraft
The InventoryOpeningBalanceDraft entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- Series? Signed32 -
sap.businessone.inventory: InventoryOpeningBalanceDraftsCollectionResponse
A paged collection of InventoryOpeningBalanceDrafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryOpeningBalanceDraft[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryOpeningBalanceLine
The InventoryOpeningBalanceLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- LineNumber? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- WarehouseCode? string -
- BinEntry? Signed32 -
- InWarehouseQuantity? decimal -
- OpeningBalance? decimal -
- Remarks? string -
- BarCode? string -
- VisualOrder? Signed32 -
- Price? decimal -
- Total? decimal -
- OpenInventoryAccount? string -
- ProjectCode? string -
- Manufacturer? Signed32 -
- SupplierCatalogNo? string -
- CostingCode? string -
- CostingCode2? string -
- CostingCode3? string -
- CostingCode4? string -
- CostingCode5? string -
- PreferredVendor? string -
- Currency? string -
- AllowBinNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ActualPrice? decimal -
- PostedValueLC? decimal -
- PostedValueSC? decimal -
- WeightOfRecycledPlastic? decimal -
- PlasticPackageExemptionReason? string -
- InventoryOpeningBalanceSerialNumbers? InventoryOpeningBalanceSerialNumber[] -
- InventoryOpeningBalanceBatchNumbers? InventoryOpeningBalanceBatchNumber[] -
- InventoryOpeningBalanceCCDNumbers? InventoryOpeningBalanceCCDNumber[] -
sap.businessone.inventory: InventoryOpeningBalanceParams
The InventoryOpeningBalanceParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 -
- documentNumber? Signed32 -
sap.businessone.inventory: InventoryOpeningBalancesCollectionResponse
A paged collection of InventoryOpeningBalances entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryOpeningBalance[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryOpeningBalanceSerialNumber
The InventoryOpeningBalanceSerialNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 -
- warrantyStart? string -
- expiryDate? string -
- itemCode? string -
- receptionDate? string -
- manufactureDate? string -
- warrantyEnd? string -
- batchID? string -
- quantity? decimal -
- internalSerialNumber? string -
- systemSerialNumber? Signed32 -
- trackingNote? Signed32 -
- documentEntry? Signed32 -
- trackingNoteLine? Signed32 -
- notes? string -
- manufacturerSerialNumber? string -
- location? string -
sap.businessone.inventory: InventoryPosting
The InventoryPosting entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- Series? Signed32 -
- PostingDate? string -
- CountDate? string -
- CountTime? string -
- Remarks? string -
- Reference2? string -
- BranchID? Signed32 -
- PriceSource? InventoryPostingPriceSourceEnum - OData EnumType 'InventoryPostingPriceSourceEnum'. Serialised by the Service Layer as the member name
- PriceList? Signed32 -
- JournalRemark? string -
- DocObjectCodeEx? string -
- FinancialPeriod? Signed32 -
- PeriodIndicator? string -
- AttachmentEntry? Signed32 -
- YearEndDate? string -
- InventoryPostingLines? InventoryPostingLine[] -
- InventoryPostingDocumentReferencesCollection? InventoryPostingDocumentReferences[] -
sap.businessone.inventory: InventoryPostingBatchNumber
The InventoryPostingBatchNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 -
- expiryDate? string -
- itemCode? string -
- addmisionDate? string -
- batchNumber? string -
- manufactureDate? string -
- quantity? decimal -
- internalSerialNumber? string -
- systemSerialNumber? Signed32 -
- trackingNote? Signed32 -
- documentEntry? Signed32 -
- trackingNoteLine? Signed32 -
- notes? string -
- manufacturerSerialNumber? string -
- location? string -
sap.businessone.inventory: InventoryPostingCCDNumber
The InventoryPostingCCDNumber complex type of the SAP Business One Service Layer
Fields
- cCDNumber? string -
- baseLineNumber? Signed32 -
- subLineNumber? Signed32 -
- trackingNote? Signed32 -
- countryOfOrigin? string -
- documentEntry? Signed32 -
- quantity? decimal -
- childNumber? Signed32 -
- trackingNoteLine? Signed32 -
sap.businessone.inventory: InventoryPostingCopyOption
The InventoryPostingCopyOption complex type of the SAP Business One Service Layer
Fields
- copyOption? InventoryPostingCopyOptionEnum -
- baseEntry? Signed32 -
sap.businessone.inventory: InventoryPostingDocumentReferences
The InventoryPostingDocumentReferences complex type of the SAP Business One Service Layer
Fields
- referencedDocEntry? Signed32 -
- referencedObjectType? ReferencedObjectTypeEnum -
- docEntry? Signed32 -
- externalReferencedDocNumber? string -
- issueDate? string -
- referencedDocNumber? Signed32 -
- lineNumber? Signed32 -
- remark? string -
sap.businessone.inventory: InventoryPostingDraft
The InventoryPostingDraft entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- DocumentNumber? Signed32 -
- Series? Signed32 -
- PostingDate? string -
- CountDate? string -
- CountTime? string -
- Comments? string -
- Reference2? string -
- BranchID? Signed32 -
- JournalRemark? string -
- DocObjectCodeEx? string -
- FinancialPeriod? Signed32 -
- PeriodIndicator? string -
- AttachmentEntry? Signed32 -
- YearEndDate? string -
sap.businessone.inventory: InventoryPostingDraftsCollectionResponse
A paged collection of InventoryPostingDrafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryPostingDraft[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryPostingLine
The InventoryPostingLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- LineNumber? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- WarehouseCode? string -
- BinEntry? Signed32 -
- InWarehouseQuantity? decimal -
- BarCode? string -
- Variance? decimal -
- VariancePercentage? decimal -
- CountedQuantity? decimal -
- Price? decimal -
- Currency? string -
- Total? decimal -
- VisualOrder? Signed32 -
- CountDate? string -
- CountTime? string -
- BaseEntry? Signed32 -
- BaseLine? Signed32 -
- BaseType? Signed32 -
- BaseReference? string -
- Remarks? string -
- InventoryOffsetIncreaseAccount? string -
- InventoryOffsetDecreaseAccount? string -
- ProjectCode? string -
- Manufacturer? Signed32 -
- SupplierCatalogNo? string -
- PreferredVendor? string -
- CostingCode? string -
- CostingCode2? string -
- CostingCode3? string -
- CostingCode4? string -
- CostingCode5? string -
- UoMCode? string -
- UoMCountedQuantity? decimal -
- ItemsPerUnit? decimal -
- AllowBinNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ActualPrice? decimal -
- PostedValueLC? decimal -
- PostedValueSC? decimal -
- InventoryPostingLineUoMs? InventoryPostingLineUoM[] -
- InventoryPostingSerialNumbers? InventoryPostingSerialNumber[] -
- InventoryPostingBatchNumbers? InventoryPostingBatchNumber[] -
- InventoryPostingCCDNumbers? InventoryPostingCCDNumber[] -
sap.businessone.inventory: InventoryPostingLineUoM
The InventoryPostingLineUoM complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 -
- LineNumber? Signed32 -
- ChildNumber? Signed32 -
- UoMCountedQuantity? decimal -
- ItemsPerUnit? decimal -
- CountedQuantity? decimal -
- UoMCode? string -
- BarCode? string -
sap.businessone.inventory: InventoryPostingParams
The InventoryPostingParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 -
- documentNumber? Signed32 -
sap.businessone.inventory: InventoryPostingsCollectionResponse
A paged collection of InventoryPostings entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? InventoryPosting[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryPostingSerialNumber
The InventoryPostingSerialNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 -
- warrantyStart? string -
- expiryDate? string -
- itemCode? string -
- receptionDate? string -
- manufactureDate? string -
- warrantyEnd? string -
- batchID? string -
- quantity? decimal -
- internalSerialNumber? string -
- systemSerialNumber? Signed32 -
- trackingNote? Signed32 -
- documentEntry? Signed32 -
- trackingNoteLine? Signed32 -
- notes? string -
- manufacturerSerialNumber? string -
- location? string -
sap.businessone.inventory: InventoryPostingsService_SetCopyOption_body
Represents the request payload for the InventoryPostingsService_SetCopyOption operation of the SAP Business One Service Layer
Fields
- inventoryPostingCopyOption? InventoryPostingCopyOption -
sap.businessone.inventory: InventoryTransferRequestsCollectionResponse
A paged collection of InventoryTransferRequests entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? StockTransfer[] -
- odataNextLink? string -
sap.businessone.inventory: InventoryTransferRequestsService_GetApprovalTemplates_body
Represents the request payload for the InventoryTransferRequestsService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- stockTransfer? StockTransfer -
sap.businessone.inventory: Item
The Item entity of the SAP Business One Service Layer
Fields
- ItemCode? string -
- ItemName? string -
- ForeignName? string -
- ItemsGroupCode? Signed32 -
- CustomsGroupCode? Signed32 -
- SalesVATGroup? string -
- BarCode? string -
- VatLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PurchaseItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SalesItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- InventoryItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IncomeAccount? string -
- ExemptIncomeAccount? string -
- ExpanseAccount? string -
- Mainsupplier? string -
- SupplierCatalogNo? string -
- DesiredInventory? decimal -
- MinInventory? decimal -
- Picture? string -
- User_Text? string -
- SerialNum? string -
- CommissionPercent? decimal -
- CommissionSum? decimal -
- CommissionGroup? Signed32 -
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- AssetItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DataExportCode? string -
- Manufacturer? Signed32 -
- QuantityOnStock? decimal -
- QuantityOrderedFromVendors? decimal -
- QuantityOrderedByCustomers? decimal -
- ManageSerialNumbers? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ManageBatchNumbers? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Valid? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ValidFrom? string -
- ValidTo? string -
- ValidRemarks? string -
- Frozen? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FrozenFrom? string -
- FrozenTo? string -
- FrozenRemarks? string -
- SalesUnit? string -
- SalesItemsPerUnit? decimal -
- SalesPackagingUnit? string -
- SalesQtyPerPackUnit? decimal -
- SalesUnitLength? decimal -
- SalesLengthUnit? Signed32 -
- SalesUnitWidth? decimal -
- SalesWidthUnit? Signed32 -
- SalesUnitHeight? decimal -
- SalesHeightUnit? Signed32 -
- SalesUnitVolume? decimal -
- SalesVolumeUnit? Signed32 -
- SalesUnitWeight? decimal -
- SalesWeightUnit? Signed32 -
- PurchaseUnit? string -
- PurchaseItemsPerUnit? decimal -
- PurchasePackagingUnit? string -
- PurchaseQtyPerPackUnit? decimal -
- PurchaseUnitLength? decimal -
- PurchaseLengthUnit? Signed32 -
- PurchaseUnitWidth? decimal -
- PurchaseWidthUnit? Signed32 -
- PurchaseUnitHeight? decimal -
- PurchaseHeightUnit? Signed32 -
- PurchaseUnitVolume? decimal -
- PurchaseVolumeUnit? Signed32 -
- PurchaseUnitWeight? decimal -
- PurchaseWeightUnit? Signed32 -
- PurchaseVATGroup? string -
- SalesFactor1? decimal -
- SalesFactor2? decimal -
- SalesFactor3? decimal -
- SalesFactor4? decimal -
- PurchaseFactor1? decimal -
- PurchaseFactor2? decimal -
- PurchaseFactor3? decimal -
- PurchaseFactor4? decimal -
- MovingAveragePrice? decimal -
- ForeignRevenuesAccount? string -
- ECRevenuesAccount? string -
- ForeignExpensesAccount? string -
- ECExpensesAccount? string -
- AvgStdPrice? decimal -
- DefaultWarehouse? string -
- ShipType? Signed32 -
- GLMethod? BoGLMethods - OData EnumType 'BoGLMethods'. Serialised by the Service Layer as the member name
- TaxType? BoTaxTypes - OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
- MaxInventory? decimal -
- ManageStockByWarehouse? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PurchaseHeightUnit1? Signed32 -
- PurchaseUnitHeight1? decimal -
- PurchaseLengthUnit1? Signed32 -
- PurchaseUnitLength1? decimal -
- PurchaseWeightUnit1? Signed32 -
- PurchaseUnitWeight1? decimal -
- PurchaseWidthUnit1? Signed32 -
- PurchaseUnitWidth1? decimal -
- SalesHeightUnit1? Signed32 -
- SalesUnitHeight1? decimal -
- SalesLengthUnit1? Signed32 -
- SalesUnitLength1? decimal -
- SalesWeightUnit1? Signed32 -
- SalesUnitWeight1? decimal -
- SalesWidthUnit1? Signed32 -
- SalesUnitWidth1? decimal -
- ForceSelectionOfSerialNumber? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ManageSerialNumbersOnReleaseOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CostAccountingMethod? BoInventorySystem - OData EnumType 'BoInventorySystem'. Serialised by the Service Layer as the member name
- SWW? string -
- WarrantyTemplate? string -
- IndirectTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArTaxCode? string -
- ApTaxCode? string -
- BaseUnitName? string -
- ItemCountryOrg? string -
- IssueMethod? BoIssueMethod - OData EnumType 'BoIssueMethod'. Serialised by the Service Layer as the member name
- SRIAndBatchManageMethod? BoManageMethod - OData EnumType 'BoManageMethod'. Serialised by the Service Layer as the member name
- IsPhantom? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- InventoryUOM? string -
- PlanningSystem? BoPlanningSystem - OData EnumType 'BoPlanningSystem'. Serialised by the Service Layer as the member name
- ProcurementMethod? BoProcurementMethod - OData EnumType 'BoProcurementMethod'. Serialised by the Service Layer as the member name
- ComponentWarehouse? BoMRPComponentWarehouse - OData EnumType 'BoMRPComponentWarehouse'. Serialised by the Service Layer as the member name
- OrderIntervals? Signed32 -
- OrderMultiple? decimal -
- LeadTime? Signed32 -
- MinOrderQuantity? decimal -
- ItemType? ItemTypeEnum - OData EnumType 'ItemTypeEnum'. Serialised by the Service Layer as the member name
- ItemClass? ItemClassEnum - OData EnumType 'ItemClassEnum'. Serialised by the Service Layer as the member name
- OutgoingServiceCode? Signed32 -
- IncomingServiceCode? Signed32 -
- ServiceGroup? Signed32 -
- NCMCode? Signed32 -
- MaterialType? BoMaterialTypes - OData EnumType 'BoMaterialTypes'. Serialised by the Service Layer as the member name
- MaterialGroup? Signed32 -
- ProductSource? string -
- Properties1? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties2? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties3? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties4? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties5? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties6? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties7? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties8? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties9? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties10? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties11? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties12? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties13? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties14? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties15? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties16? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties17? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties18? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties19? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties20? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties21? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties22? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties23? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties24? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties25? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties26? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties27? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties28? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties29? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties30? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties31? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties32? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties33? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties34? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties35? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties36? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties37? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties38? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties39? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties40? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties41? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties42? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties43? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties44? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties45? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties46? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties47? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties48? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties49? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties50? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties51? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties52? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties53? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties54? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties55? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties56? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties57? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties58? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties59? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties60? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties61? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties62? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties63? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Properties64? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AutoCreateSerialNumbersOnRelease? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DNFEntry? Signed32 -
- GTSItemSpec? string -
- GTSItemTaxCategory? string -
- FuelID? Signed32 -
- BeverageTableCode? string -
- BeverageGroupCode? string -
- BeverageCommercialBrandCode? Signed32 -
- Series? Signed32 -
- ToleranceDays? Signed32 -
- TypeOfAdvancedRules? TypeOfAdvancedRulesEnum - OData EnumType 'TypeOfAdvancedRulesEnum'. Serialised by the Service Layer as the member name
- IssuePrimarilyBy? IssuePrimarilyByEnum - OData EnumType 'IssuePrimarilyByEnum'. Serialised by the Service Layer as the member name
- NoDiscounts? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AssetClass? string -
- AssetGroup? string -
- InventoryNumber? string -
- Technician? Signed32 -
- Employee? Signed32 -
- Location? Signed32 -
- AssetStatus? AssetStatusEnum - OData EnumType 'AssetStatusEnum'. Serialised by the Service Layer as the member name
- CapitalizationDate? string -
- StatisticalAsset? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Cession? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DeactivateAfterUsefulLife? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ManageByQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UoMGroupEntry? Signed32 -
- InventoryUoMEntry? Signed32 -
- DefaultSalesUoMEntry? Signed32 -
- DefaultPurchasingUoMEntry? Signed32 -
- DepreciationGroup? string -
- AssetSerialNumber? string -
- InventoryWeight? decimal -
- InventoryWeightUnit? Signed32 -
- InventoryWeight1? decimal -
- InventoryWeightUnit1? Signed32 -
- DefaultCountingUnit? string -
- CountingItemsPerUnit? decimal -
- DefaultCountingUoMEntry? Signed32 -
- Excisable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ChapterID? Signed32 -
- ScsCode? string -
- SpProdType? SpecialProductTypeEnum - OData EnumType 'SpecialProductTypeEnum'. Serialised by the Service Layer as the member name
- ProdStdCost? decimal -
- InCostRollup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VirtualAssetItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EnforceAssetSerialNumbers? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AttachmentEntry? Signed32 -
- LinkedResource? string -
- UpdateDate? string -
- UpdateTime? string -
- GSTRelevnt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SACEntry? Signed32 -
- GSTTaxCategory? GSTTaxCategoryEnum - OData EnumType 'GSTTaxCategoryEnum'. Serialised by the Service Layer as the member name
- ServiceCategoryEntry? Signed32 -
- CapitalGoodsOnHoldPercent? decimal -
- CapitalGoodsOnHoldLimit? decimal -
- AssessableValue? decimal -
- AssVal4WTR? decimal -
- SOIExcisable? SOIExcisableTypeEnum - OData EnumType 'SOIExcisableTypeEnum'. Serialised by the Service Layer as the member name
- TNVED? string -
- ImportedItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PricingUnit? Signed32 -
- CreateDate? string -
- CreateTime? string -
- NVECode? string -
- CtrSealQty? decimal -
- CESTCode? Signed32 -
- LegalText? string -
- DataVersion? Signed32 -
- CreateQRCodeFrom? string -
- TraceableItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CommodityClassification? Signed32 -
- WeightOfRecycledPlastic? decimal -
- PlasticPackageTaxCategory? string -
- PlasticPackageExemptionReasonForPurchase? string -
- PlasticPackageExemptionReasonForProduction? string -
- SAFTProductType? SAFTProductTypeEnum - OData EnumType 'SAFTProductTypeEnum'. Serialised by the Service Layer as the member name
- SAFTProductTypeEx? string -
- StandardItemIdentification? Signed32 -
- ItemPrices? ItemPrice[] -
- ItemWarehouseInfoCollection? ItemWarehouseInfo[] -
- ItemPreferredVendors? ItemPreferredVendor[] -
- ItemLocalizationInfos? ItemLocalizationInfo[] -
- ItemProjects? ItemProject[] -
- ItemDistributionRules? ItemDistributionRule[] -
- ItemAttributeGroups? ItemAttributeGroups[] -
- ItemDepreciationParameters? ItemDepreciationParameter[] -
- ItemPeriodControls? ItemPeriodControl[] -
- ItemUnitOfMeasurementCollection? ItemUnitOfMeasurement[] -
- ItemBarCodeCollection? ItemBarCode[] -
- ItemIntrastatExtension? ItemIntrastatExtension - The
ItemIntrastatExtensioncomplex type of the SAP Business One Service Layer
- ItemGroups? ItemGroups - The
ItemGroupsentity of the SAP Business One Service Layer
- CustomsGroup? CustomsGroup - The
CustomsGroupentity of the SAP Business One Service Layer
- Manufacturer2? Manufacturer - The
Manufacturerentity of the SAP Business One Service Layer
- ShippingType? ShippingType - The
ShippingTypeentity of the SAP Business One Service Layer
- InventoryCycles? InventoryCycles - The
InventoryCyclesentity of the SAP Business One Service Layer
- WarehouseLocation? WarehouseLocation - The
WarehouseLocationentity of the SAP Business One Service Layer
- UnitOfMeasurementGroup? UnitOfMeasurementGroup - The
UnitOfMeasurementGroupentity of the SAP Business One Service Layer
- UnitOfMeasurement? UnitOfMeasurement - The
UnitOfMeasuremententity of the SAP Business One Service Layer
- BinLocations? BinLocation[] -
- AlternateCatNum? AlternateCatNum[] -
- StockTakings? StockTaking[] -
- BarCodes? BarCode[] -
- SpecialPrices? SpecialPrice[] -
- SerialNumberDetails? SerialNumberDetail[] -
- BatchNumberDetails? BatchNumberDetail[] -
sap.businessone.inventory: ItemAttributeGroups
The ItemAttributeGroups complex type of the SAP Business One Service Layer
Fields
- attribute41? Signed32 -
- attribute40? Signed32 -
- attribute43? string -
- attribute42? Signed32 -
- attribute45? string -
- attribute44? string -
- attribute47? string -
- attribute46? string -
- attribute38? Signed32 -
- attribute37? Signed32 -
- attribute39? Signed32 -
- attribute30? string -
- attribute32? string -
- attribute31? string -
- attribute34? Signed32 -
- attribute33? Signed32 -
- attribute36? Signed32 -
- attribute35? Signed32 -
- attribute27? string -
- attribute26? string -
- attribute29? string -
- attribute28? string -
- attribute9? string -
- attribute8? string -
- attribute7? string -
- attribute6? string -
- attribute5? string -
- attribute61? decimal -
- attribute4? string -
- attribute60? decimal -
- attribute3? string -
- attribute63? decimal -
- attribute2? string -
- attribute62? decimal -
- attribute1? string -
- attribute21? string -
- attribute20? string -
- attribute64? decimal -
- attribute23? string -
- attribute22? string -
- attribute25? string -
- attribute24? string -
- attribute16? string -
- attribute15? string -
- attribute59? decimal -
- attribute18? string -
- attribute17? string -
- attribute19? string -
- attribute50? decimal -
- attribute52? decimal -
- attribute51? decimal -
- attribute10? string -
- attribute54? decimal -
- attribute53? decimal -
- attribute12? string -
- attribute56? decimal -
- attribute11? string -
- attribute55? decimal -
- attribute14? string -
- attribute58? decimal -
- attribute13? string -
- attribute57? decimal -
- attribute49? decimal -
- attribute48? decimal -
sap.businessone.inventory: ItemBarCode
The ItemBarCode complex type of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 -
- UoMEntry? Signed32 -
- Barcode? string -
- FreeText? string -
sap.businessone.inventory: ItemCycleCount
The ItemCycleCount complex type of the SAP Business One Service Layer
Fields
- CycleCode? Signed32 -
- Alert? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NextCountingDate? string -
- AlertTime? string -
- DestinationUser? Signed32 -
- WarehouseCode? string -
sap.businessone.inventory: ItemDepreciationParameter
The ItemDepreciationParameter complex type of the SAP Business One Service Layer
Fields
- remainingUnits? Signed32 -
- fiscalYear? string -
- depreciationStartDate? string -
- depreciationEndDate? string -
- standardUnits? Signed32 -
- depreciationArea? string -
- remainingLife? decimal -
- depreciationType? string -
- usefulLife? Signed32 -
- totalUnitsInUsefulLife? Signed32 -
sap.businessone.inventory: ItemDistributionRule
The ItemDistributionRule complex type of the SAP Business One Service Layer
Fields
- distributionRule? string -
- distributionRule4? string -
- distributionRule5? string -
- distributionRule2? string -
- distributionRule3? string -
- validTo? string -
- validFrom? string -
- lineNumber? Signed32 -
sap.businessone.inventory: ItemGroups
The ItemGroups entity of the SAP Business One Service Layer
Fields
- PriceDifferencesAccount? string -
- StockInflationAdjustAccount? string -
- MinimumOrderQuantity? decimal -
- OrderInterval? Signed32 -
- ExchangeRateDifferencesAccount? string -
- IncreasingAccount? string -
- StockInflationOffsetAccount? string -
- ProcurementMethod? BoProcurementMethod - OData EnumType 'BoProcurementMethod'. Serialised by the Service Layer as the member name
- ComponentWarehouse? BoMRPComponentWarehouse - OData EnumType 'BoMRPComponentWarehouse'. Serialised by the Service Layer as the member name
- PurchaseOffsetAccount? string -
- InventorySystem? BoInventorySystem - OData EnumType 'BoInventorySystem'. Serialised by the Service Layer as the member name
- WIPMaterialVarianceAccount? string -
- PlanningSystem? BoPlanningSystem - OData EnumType 'BoPlanningSystem'. Serialised by the Service Layer as the member name
- PurchaseAccount? string -
- ReturningAccount? string -
- CostInflationAccount? string -
- ExpensesAccount? string -
- RevenuesAccount? string -
- TransfersAccount? string -
- LeadTime? Signed32 -
- OrderMultiple? decimal -
- CostInflationOffsetAccount? string -
- InventoryAccount? string -
- DecreaseGLAccount? string -
- Number? Signed32 -
- GoodsClearingAccount? string -
- IncreaseGLAccount? string -
- ForeignRevenuesAccount? string -
- Alert? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WIPMaterialAccount? string -
- ShippedGoodsAccount? string -
- ExemptRevenuesAccount? string -
- DecreasingAccount? string -
- VATInRevenueAccount? string -
- VarianceAccount? string -
- EUExpensesAccount? string -
- ForeignExpensesAccount? string -
- CycleCode? Signed32 -
- CostAccount? string -
- EURevenuesAccount? string -
- PAReturnAccount? string -
- GroupName? string -
- ExpenseClearingAct? string -
- PurchaseCreditAcc? string -
- EUPurchaseCreditAcc? string -
- ForeignPurchaseCreditAcc? string -
- SalesCreditAcc? string -
- SalesCreditEUAcc? string -
- ExemptedCredits? string -
- SalesCreditForeignAcc? string -
- ExpenseOffsetAccount? string -
- NegativeInventoryAdjustmentAccount? string -
- WHIncomingCenvatAccount? string -
- WHOutgoingCenvatAccount? string -
- StockInTransitAccount? string -
- WipOffsetProfitAndLossAccount? string -
- InventoryOffsetProfitAndLossAccount? string -
- ToleranceDays? Signed32 -
- DefaultUoMGroup? Signed32 -
- DefaultInventoryUoM? Signed32 -
- PurchaseBalanceAccount? string -
- ItemClass? ItemClassEnum - OData EnumType 'ItemClassEnum'. Serialised by the Service Layer as the member name
- RawMaterial? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ItemGroupsWarehouseInfos? ItemGroupsWarehouseInfo[] -
- InventoryCycles? InventoryCycles - The
InventoryCyclesentity of the SAP Business One Service Layer
- UnitOfMeasurementGroup? UnitOfMeasurementGroup - The
UnitOfMeasurementGroupentity of the SAP Business One Service Layer
- UnitOfMeasurement? UnitOfMeasurement - The
UnitOfMeasuremententity of the SAP Business One Service Layer
- Items? Item[] -
- BinLocations? BinLocation[] -
sap.businessone.inventory: ItemGroupsCollectionResponse
A paged collection of ItemGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ItemGroups[] -
- odataNextLink? string -
sap.businessone.inventory: ItemGroupsService_UpdateWithOITMs_body
Represents the request payload for the ItemGroupsService_UpdateWithOITMs operation of the SAP Business One Service Layer
Fields
- itemGroups? ItemGroups -
sap.businessone.inventory: ItemGroupsWarehouseInfo
The ItemGroupsWarehouseInfo complex type of the SAP Business One Service Layer
Fields
- defaultBin? Signed32 -
- itmsGrpCod? Signed32 -
- defaultBinEnforced? BoYesNoEnum -
- warehouseCode? string -
sap.businessone.inventory: ItemImage
The ItemImage entity of the SAP Business One Service Layer
Fields
- itemCode? string -
- picture? string -
sap.businessone.inventory: ItemImagesCollectionResponse
A paged collection of ItemImages entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ItemImage[] -
- odataNextLink? string -
sap.businessone.inventory: ItemIntrastatExtension
The ItemIntrastatExtension complex type of the SAP Business One Service Layer
Fields
- importNatureOfTransaction? Signed32 -
- factorOfSupplementaryUnit? decimal -
- itemCode? string -
- importRegionState? Signed32 -
- exportNatureOfTransaction? Signed32 -
- countryOfOrigin? string -
- serviceSupplyMethod? BoServiceSupplyMethods -
- exportRegionCountry? string -
- exportRegionState? Signed32 -
- intrastatRelevant? BoYesNoEnum -
- supplementaryUnit? Signed32 -
- 'type? BoDocumentTypes -
- servicePaymentMethod? BoServicePaymentMethods -
- serviceCode? Signed32 -
- useWeightInCalculation? BoYesNoEnum -
- commodityCode? Signed32 -
- importStatisticalProcedure? Signed32 -
- statisticalCode? string -
- importRegionCountry? string -
- exportStatisticalProcedure? Signed32 -
sap.businessone.inventory: ItemLocalizationInfo
The ItemLocalizationInfo complex type of the SAP Business One Service Layer
Fields
- ItemCode? string -
- IncomeNature? string -
sap.businessone.inventory: ItemPeriodControl
The ItemPeriodControl complex type of the SAP Business One Service Layer
Fields
- fiscalYear? string -
- subPeriod? Signed32 -
- factor? decimal -
- depreciationStatus? BoYesNoEnum -
- depreciationArea? string -
- actualUnits? Signed32 -
sap.businessone.inventory: ItemPreferredVendor
The ItemPreferredVendor complex type of the SAP Business One Service Layer
Fields
- BPCode? string -
sap.businessone.inventory: ItemPrice
The ItemPrice complex type of the SAP Business One Service Layer
Fields
- PriceList? Signed32 -
- Price? decimal -
- Currency? string -
- AdditionalPrice1? decimal -
- AdditionalCurrency1? string -
- AdditionalPrice2? decimal -
- AdditionalCurrency2? string -
- BasePriceList? Signed32 -
- Factor? decimal -
- UoMPrices? UoMPrice[] -
sap.businessone.inventory: ItemProject
The ItemProject complex type of the SAP Business One Service Layer
Fields
- project? string -
- validTo? string -
- validFrom? string -
- lineNumber? Signed32 -
sap.businessone.inventory: ItemPropertiesCollectionResponse
A paged collection of ItemProperties entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ItemProperty[] -
- odataNextLink? string -
sap.businessone.inventory: ItemProperty
The ItemProperty entity of the SAP Business One Service Layer
Fields
- Number? Signed32 -
- PropertyName? string -
sap.businessone.inventory: ItemsCollectionResponse
A paged collection of Items entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Item[] -
- odataNextLink? string -
sap.businessone.inventory: ItemUnitOfMeasurement
The ItemUnitOfMeasurement complex type of the SAP Business One Service Layer
Fields
- UoMType? ItemUoMTypeEnum - OData EnumType 'ItemUoMTypeEnum'. Serialised by the Service Layer as the member name
- UoMEntry? Signed32 -
- DefaultBarcode? Signed32 -
- DefaultPackage? Signed32 -
- Length1? decimal -
- Length1Unit? Signed32 -
- Length2? decimal -
- Length2Unit? Signed32 -
- Width1? decimal -
- Width1Unit? Signed32 -
- Width2? decimal -
- Width2Unit? Signed32 -
- Height1? decimal -
- Height1Unit? Signed32 -
- Height2? decimal -
- Height2Unit? Signed32 -
- Volume? decimal -
- VolumeUnit? Signed32 -
- Weight1? decimal -
- Weight1Unit? Signed32 -
- Weight2? decimal -
- Weight2Unit? Signed32 -
- ItemUoMPackageCollection? ItemUoMPackage[] -
sap.businessone.inventory: ItemUoMPackage
The ItemUoMPackage complex type of the SAP Business One Service Layer
Fields
- UoMType? ItemUoMTypeEnum - OData EnumType 'ItemUoMTypeEnum'. Serialised by the Service Layer as the member name
- UoMEntry? Signed32 -
- PackageTypeEntry? Signed32 -
- Length1? decimal -
- Length1Unit? Signed32 -
- Length2? decimal -
- Length2Unit? Signed32 -
- Width1? decimal -
- Width1Unit? Signed32 -
- Width2? decimal -
- Width2Unit? Signed32 -
- Height1? decimal -
- Height1Unit? Signed32 -
- Height2? decimal -
- Height2Unit? Signed32 -
- Volume? decimal -
- VolumeUnit? Signed32 -
- Weight1? decimal -
- Weight1Unit? Signed32 -
- Weight2? decimal -
- Weight2Unit? Signed32 -
- QuantityPerPackage? decimal -
sap.businessone.inventory: ItemWarehouseInfo
The ItemWarehouseInfo complex type of the SAP Business One Service Layer
Fields
- MinimalStock? decimal -
- MaximalStock? decimal -
- MinimalOrder? decimal -
- StandardAveragePrice? decimal -
- Locked? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- InventoryAccount? string -
- CostAccount? string -
- TransferAccount? string -
- RevenuesAccount? string -
- VarienceAccount? string -
- DecreasingAccount? string -
- IncreasingAccount? string -
- ReturningAccount? string -
- ExpensesAccount? string -
- EURevenuesAccount? string -
- EUExpensesAccount? string -
- ForeignRevenueAcc? string -
- ForeignExpensAcc? string -
- ExemptIncomeAcc? string -
- PriceDifferenceAcc? string -
- WarehouseCode? string -
- InStock? decimal -
- Committed? decimal -
- Ordered? decimal -
- CountedQuantity? decimal -
- WasCounted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UserSignature? Signed32 -
- Counted? decimal -
- ExpenseClearingAct? string -
- PurchaseCreditAcc? string -
- EUPurchaseCreditAcc? string -
- ForeignPurchaseCreditAcc? string -
- SalesCreditAcc? string -
- SalesCreditEUAcc? string -
- ExemptedCredits? string -
- SalesCreditForeignAcc? string -
- ExpenseOffsettingAccount? string -
- WipAccount? string -
- ExchangeRateDifferencesAcct? string -
- GoodsClearingAcct? string -
- NegativeInventoryAdjustmentAccount? string -
- CostInflationOffsetAccount? string -
- GLDecreaseAcct? string -
- GLIncreaseAcct? string -
- PAReturnAcct? string -
- PurchaseAcct? string -
- PurchaseOffsetAcct? string -
- ShippedGoodsAccount? string -
- StockInflationOffsetAccount? string -
- StockInflationAdjustAccount? string -
- VATInRevenueAccount? string -
- WipVarianceAccount? string -
- CostInflationAccount? string -
- WHIncomingCenvatAccount? string -
- WHOutgoingCenvatAccount? string -
- StockInTransitAccount? string -
- WipOffsetProfitAndLossAccount? string -
- InventoryOffsetProfitAndLossAccount? string -
- DefaultBin? Signed32 -
- DefaultBinEnforced? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PurchaseBalanceAccount? string -
- ItemCode? string -
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CNJPMan? string -
- ItemCycleCounts? ItemCycleCount[] -
sap.businessone.inventory: Layer
The Layer complex type of the SAP Business One Service Layer
Fields
- openQty? decimal -
- layerID? Signed32 -
- docNumber? string -
- entryDate? string -
- docType? TransTypesEnum -
- currentCost? decimal -
- transactionSequenceNum? Signed32 -
sap.businessone.inventory: LengthMeasure
The LengthMeasure entity of the SAP Business One Service Layer
Fields
- UnitCode? Signed32 -
- UnitDisplay? string -
- UnitName? string -
- UnitCodeforQuantityDisplay? string -
- UnitLengthinmm? decimal -
sap.businessone.inventory: LengthMeasuresCollectionResponse
A paged collection of LengthMeasures entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? LengthMeasure[] -
- odataNextLink? string -
sap.businessone.inventory: LineExpenseTaxJurisdiction
The LineExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
sap.businessone.inventory: LineFreightEBooksDetail
The LineFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 -
- IncomeClassificationCategory? Signed32 -
- ExpensesClassificationType? Signed32 -
- ExpensesClassificationCategory? Signed32 -
- NetValueLC? decimal -
- NetValueFC? decimal -
- NetValueSC? decimal -
- VatCategory? Signed32 -
- WithheldPercentCategory? Signed32 -
- WithheldAmountLC? decimal -
- WithheldAmountFC? decimal -
- WithheldAmountSC? decimal -
- VatClassificationType? Signed32 -
- VatClassificationCategory? Signed32 -
- VATExemptionCause? Signed32 -
sap.businessone.inventory: LineTaxJurisdiction
The LineTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string -
- JurisdictionType? Signed32 -
- TaxAmount? decimal -
- TaxAmountSC? decimal -
- TaxAmountFC? decimal -
- TaxRate? decimal -
- DocEntry? Signed32 -
- LineNumber? Signed32 -
- RowSequence? Signed32 -
- ExternalCalcTaxRate? decimal -
- ExternalCalcTaxAmount? decimal -
- ExternalCalcTaxAmountFC? decimal -
- ExternalCalcTaxAmountSC? decimal -
- BaseSum? decimal -
- TaxInPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NonDeductiblePercent? decimal -
- TaxOnReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Exempt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Unencumbered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ListAlternateCatNumHeaders
Represents the Headers record for the operation: listAlternateCatNum
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListAlternateCatNumQueries
Represents the Queries record for the operation: listAlternateCatNum
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.inventory: ListAttributeGroupsHeaders
Represents the Headers record for the operation: listAttributeGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListAttributeGroupsQueries
Represents the Queries record for the operation: listAttributeGroups
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.inventory: ListBarCodesHeaders
Represents the Headers record for the operation: listBarCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListBarCodesQueries
Represents the Queries record for the operation: listBarCodes
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.inventory: ListBatchNumberDetailsHeaders
Represents the Headers record for the operation: listBatchNumberDetails
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListBatchNumberDetailsQueries
Represents the Queries record for the operation: listBatchNumberDetails
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.inventory: ListBinLocationAttributesHeaders
Represents the Headers record for the operation: listBinLocationAttributes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListBinLocationAttributesQueries
Represents the Queries record for the operation: listBinLocationAttributes
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.inventory: ListBinLocationFieldsHeaders
Represents the Headers record for the operation: listBinLocationFields
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListBinLocationFieldsQueries
Represents the Queries record for the operation: listBinLocationFields
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.inventory: ListBinLocationsHeaders
Represents the Headers record for the operation: listBinLocations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListBinLocationsQueries
Represents the Queries record for the operation: listBinLocations
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.inventory: ListCustomsGroupsHeaders
Represents the Headers record for the operation: listCustomsGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListCustomsGroupsQueries
Represents the Queries record for the operation: listCustomsGroups
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.inventory: ListCycleCountDeterminationsHeaders
Represents the Headers record for the operation: listCycleCountDeterminations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListCycleCountDeterminationsQueries
Represents the Queries record for the operation: listCycleCountDeterminations
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.inventory: ListEnhancedDiscountGroupsHeaders
Represents the Headers record for the operation: listEnhancedDiscountGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListEnhancedDiscountGroupsQueries
Represents the Queries record for the operation: listEnhancedDiscountGroups
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.inventory: ListInventoryCountingDraftsHeaders
Represents the Headers record for the operation: listInventoryCountingDrafts
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryCountingDraftsQueries
Represents the Queries record for the operation: listInventoryCountingDrafts
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.inventory: ListInventoryCountingsHeaders
Represents the Headers record for the operation: listInventoryCountings
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryCountingsQueries
Represents the Queries record for the operation: listInventoryCountings
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.inventory: ListInventoryCyclesHeaders
Represents the Headers record for the operation: listInventoryCycles
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryCyclesQueries
Represents the Queries record for the operation: listInventoryCycles
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.inventory: ListInventoryGenEntriesHeaders
Represents the Headers record for the operation: listInventoryGenEntries
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryGenEntriesQueries
Represents the Queries record for the operation: listInventoryGenEntries
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.inventory: ListInventoryGenExitsHeaders
Represents the Headers record for the operation: listInventoryGenExits
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryGenExitsQueries
Represents the Queries record for the operation: listInventoryGenExits
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.inventory: ListInventoryOpeningBalanceDraftsHeaders
Represents the Headers record for the operation: listInventoryOpeningBalanceDrafts
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryOpeningBalanceDraftsQueries
Represents the Queries record for the operation: listInventoryOpeningBalanceDrafts
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.inventory: ListInventoryOpeningBalancesHeaders
Represents the Headers record for the operation: listInventoryOpeningBalances
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryOpeningBalancesQueries
Represents the Queries record for the operation: listInventoryOpeningBalances
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.inventory: ListInventoryPostingDraftsHeaders
Represents the Headers record for the operation: listInventoryPostingDrafts
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryPostingDraftsQueries
Represents the Queries record for the operation: listInventoryPostingDrafts
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.inventory: ListInventoryPostingsHeaders
Represents the Headers record for the operation: listInventoryPostings
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryPostingsQueries
Represents the Queries record for the operation: listInventoryPostings
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.inventory: ListInventoryTransferRequestsHeaders
Represents the Headers record for the operation: listInventoryTransferRequests
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListInventoryTransferRequestsQueries
Represents the Queries record for the operation: listInventoryTransferRequests
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.inventory: ListItemGroupsHeaders
Represents the Headers record for the operation: listItemGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListItemGroupsQueries
Represents the Queries record for the operation: listItemGroups
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.inventory: ListItemImagesHeaders
Represents the Headers record for the operation: listItemImages
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListItemImagesQueries
Represents the Queries record for the operation: listItemImages
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.inventory: ListItemPropertiesHeaders
Represents the Headers record for the operation: listItemProperties
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListItemPropertiesQueries
Represents the Queries record for the operation: listItemProperties
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.inventory: ListItemsHeaders
Represents the Headers record for the operation: listItems
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListItemsQueries
Represents the Queries record for the operation: listItems
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.inventory: ListLengthMeasuresHeaders
Represents the Headers record for the operation: listLengthMeasures
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListLengthMeasuresQueries
Represents the Queries record for the operation: listLengthMeasures
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.inventory: ListManufacturersHeaders
Represents the Headers record for the operation: listManufacturers
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListManufacturersQueries
Represents the Queries record for the operation: listManufacturers
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.inventory: ListMaterialRevaluationHeaders
Represents the Headers record for the operation: listMaterialRevaluation
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListMaterialRevaluationQueries
Represents the Queries record for the operation: listMaterialRevaluation
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.inventory: ListPackagesTypesHeaders
Represents the Headers record for the operation: listPackagesTypes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListPackagesTypesQueries
Represents the Queries record for the operation: listPackagesTypes
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.inventory: ListPickListsHeaders
Represents the Headers record for the operation: listPickLists
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListPickListsQueries
Represents the Queries record for the operation: listPickLists
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.inventory: ListPriceListsHeaders
Represents the Headers record for the operation: listPriceLists
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListPriceListsQueries
Represents the Queries record for the operation: listPriceLists
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.inventory: ListSerialNumberDetailsHeaders
Represents the Headers record for the operation: listSerialNumberDetails
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListSerialNumberDetailsQueries
Represents the Queries record for the operation: listSerialNumberDetails
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.inventory: ListShippingTypesHeaders
Represents the Headers record for the operation: listShippingTypes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListShippingTypesQueries
Represents the Queries record for the operation: listShippingTypes
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.inventory: ListSpecialPricesHeaders
Represents the Headers record for the operation: listSpecialPrices
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListSpecialPricesQueries
Represents the Queries record for the operation: listSpecialPrices
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.inventory: ListStockTakingsHeaders
Represents the Headers record for the operation: listStockTakings
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListStockTakingsQueries
Represents the Queries record for the operation: listStockTakings
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.inventory: ListStockTransferDraftsHeaders
Represents the Headers record for the operation: listStockTransferDrafts
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListStockTransferDraftsQueries
Represents the Queries record for the operation: listStockTransferDrafts
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.inventory: ListStockTransfersHeaders
Represents the Headers record for the operation: listStockTransfers
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListStockTransfersQueries
Represents the Queries record for the operation: listStockTransfers
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.inventory: ListTrackingNotesHeaders
Represents the Headers record for the operation: listTrackingNotes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListTrackingNotesQueries
Represents the Queries record for the operation: listTrackingNotes
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.inventory: ListUnitOfMeasurementGroupsHeaders
Represents the Headers record for the operation: listUnitOfMeasurementGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListUnitOfMeasurementGroupsQueries
Represents the Queries record for the operation: listUnitOfMeasurementGroups
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.inventory: ListUnitOfMeasurementsHeaders
Represents the Headers record for the operation: listUnitOfMeasurements
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListUnitOfMeasurementsQueries
Represents the Queries record for the operation: listUnitOfMeasurements
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.inventory: ListWarehouseLocationsHeaders
Represents the Headers record for the operation: listWarehouseLocations
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListWarehouseLocationsQueries
Represents the Queries record for the operation: listWarehouseLocations
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.inventory: ListWarehousesHeaders
Represents the Headers record for the operation: listWarehouses
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListWarehousesQueries
Represents the Queries record for the operation: listWarehouses
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.inventory: ListWarehouseSublevelCodesHeaders
Represents the Headers record for the operation: listWarehouseSublevelCodes
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListWarehouseSublevelCodesQueries
Represents the Queries record for the operation: listWarehouseSublevelCodes
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.inventory: ListWeightMeasuresHeaders
Represents the Headers record for the operation: listWeightMeasures
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.inventory: ListWeightMeasuresQueries
Represents the Queries record for the operation: listWeightMeasures
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.inventory: Manufacturer
The Manufacturer entity of the SAP Business One Service Layer
Fields
- Code? Signed32 -
- ManufacturerName? string -
- Items? Item[] -
sap.businessone.inventory: ManufacturersCollectionResponse
A paged collection of Manufacturers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Manufacturer[] -
- odataNextLink? string -
sap.businessone.inventory: MaterialRevaluation
The MaterialRevaluation entity of the SAP Business One Service Layer
Fields
- DocNum? Signed32 -
- DocDate? string -
- Reference1? string -
- Reference2? string -
- Comments? string -
- JournalMemo? string -
- DocTime? string -
- Series? Signed32 -
- TaxDate? string -
- DocEntry? Signed32 -
- CreationDate? string -
- UpdateDate? string -
- TransNum? Signed32 -
- RevalType? string -
- RevaluationIncomeAccount? string -
- RevaluationExpenseAccount? string -
- DataSource? string -
- UserSignature? Signed32 -
- InflationRevaluation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CardCode? string -
- CardName? string -
- MaterialRevaluationLines? MaterialRevaluationLine[] -
- MaterialRevaluationDocumentReferencesCollection? MaterialRevaluationDocumentReferences[] -
sap.businessone.inventory: MaterialRevaluationCollectionResponse
A paged collection of MaterialRevaluation entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? MaterialRevaluation[] -
- odataNextLink? string -
sap.businessone.inventory: MaterialRevaluationDocumentReferences
The MaterialRevaluationDocumentReferences complex type of the SAP Business One Service Layer
Fields
- referencedDocEntry? Signed32 -
- referencedObjectType? ReferencedObjectTypeEnum -
- docEntry? Signed32 -
- externalReferencedDocNumber? string -
- issueDate? string -
- referencedDocNumber? Signed32 -
- lineNumber? Signed32 -
- remark? string -
sap.businessone.inventory: MaterialRevaluationFIFO
The MaterialRevaluationFIFO complex type of the SAP Business One Service Layer
Fields
- layers? Layer[] -
sap.businessone.inventory: MaterialRevaluationFIFOParams
The MaterialRevaluationFIFOParams complex type of the SAP Business One Service Layer
Fields
- itemCode? string -
- showIssuedLayers? BoYesNoEnum -
- locationCode? string -
- locationType? string -
sap.businessone.inventory: MaterialRevaluationFIFOService_GetMaterialRevaluationFIFO_body
Represents the request payload for the MaterialRevaluationFIFOService_GetMaterialRevaluationFIFO operation of the SAP Business One Service Layer
Fields
- materialRevaluationFIFOParams? MaterialRevaluationFIFOParams -
sap.businessone.inventory: MaterialRevaluationLine
The MaterialRevaluationLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- Quantity? decimal -
- Price? decimal -
- WarehouseCode? string -
- ActualPrice? decimal -
- OnHand? decimal -
- DebitCredit? decimal -
- DocEntry? Signed32 -
- RevaluationDecrementAccount? string -
- RevaluationIncrementAccount? string -
- RevalAmountToStock? decimal -
- Project? string -
- DistributionRule? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- FIFOLayers? FIFOLayer[] -
- SNBLinesCollection? SNBLines[] -
sap.businessone.inventory: MaterialRevaluationSNBParam
The MaterialRevaluationSNBParam complex type of the SAP Business One Service Layer
Fields
- itemCode? string -
sap.businessone.inventory: MaterialRevaluationSNBParams
The MaterialRevaluationSNBParams complex type of the SAP Business One Service Layer
Fields
- newCost? decimal -
- debitCredit? decimal -
- admissionDate? string -
- snbAbsEntry? Signed32 -
- systemNumber? Signed32 -
- manufactureNumber? string -
- expirationDate? string -
- lotNumber? string -
sap.businessone.inventory: MaterialRevaluationSNBService_Add_body
Represents the request payload for the MaterialRevaluationSNBService_Add operation of the SAP Business One Service Layer
Fields
- materialRevaluationSNBParam? MaterialRevaluationSNBParam -
sap.businessone.inventory: MaterialRevaluationSNBService_GetList_body
Represents the request payload for the MaterialRevaluationSNBService_GetList operation of the SAP Business One Service Layer
Fields
- materialRevaluationSNBParam? MaterialRevaluationSNBParam -
sap.businessone.inventory: OriginalItem
The OriginalItem complex type of the SAP Business One Service Layer
Fields
- itemCode? string -
- alternativeItems? AlternativeItem[] -
- itemName? string -
sap.businessone.inventory: OriginalItemParams
The OriginalItemParams complex type of the SAP Business One Service Layer
Fields
- itemCode? string -
- itemName? string -
sap.businessone.inventory: PackagesType
The PackagesType entity of the SAP Business One Service Layer
Fields
- Type? string -
- Code? Signed32 -
- Length1? decimal -
- Length1Unit? Signed32 -
- Length2? decimal -
- Length2Unit? Signed32 -
- Width1? decimal -
- Width1Unit? Signed32 -
- Width2? decimal -
- Width2Unit? Signed32 -
- Height1? decimal -
- Height1Unit? Signed32 -
- Height2? decimal -
- Height2Unit? Signed32 -
- Volume? decimal -
- VolumeUnit? Signed32 -
- Weight1? decimal -
- Weight1Unit? Signed32 -
- Weight2? decimal -
- Weight2Unit? Signed32 -
sap.businessone.inventory: PackagesTypesCollectionResponse
A paged collection of PackagesTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? PackagesType[] -
- odataNextLink? string -
sap.businessone.inventory: PickList
The PickList entity of the SAP Business One Service Layer
Fields
- Absoluteentry? Signed32 -
- Name? string -
- OwnerCode? Signed32 -
- OwnerName? string -
- PickDate? string -
- Remarks? string -
- Status? BoPickStatus - OData EnumType 'BoPickStatus'. Serialised by the Service Layer as the member name
- ObjectType? string -
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateQRCodeFrom? string -
- PickListsLines? PickListsLine[] -
sap.businessone.inventory: PickListsCollectionResponse
A paged collection of PickLists entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? PickList[] -
- odataNextLink? string -
sap.businessone.inventory: PickListsLine
The PickListsLine complex type of the SAP Business One Service Layer
Fields
- AbsoluteEntry? Signed32 -
- LineNumber? Signed32 -
- OrderEntry? Signed32 -
- OrderRowID? Signed32 -
- PickedQuantity? decimal -
- PickStatus? BoPickStatus - OData EnumType 'BoPickStatus'. Serialised by the Service Layer as the member name
- ReleasedQuantity? decimal -
- PreviouslyReleasedQuantity? decimal -
- BaseObjectType? Signed32 -
- SerialNumbers? SerialNumber[] -
- BatchNumbers? BatchNumber[] -
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] -
sap.businessone.inventory: PickListsService_Close_body
Represents the request payload for the PickListsService_Close operation of the SAP Business One Service Layer
Fields
- pickList? PickList -
sap.businessone.inventory: PickListsService_UpdateReleasedAllocation_body
Represents the request payload for the PickListsService_UpdateReleasedAllocation operation of the SAP Business One Service Layer
Fields
- pickList? PickList -
sap.businessone.inventory: PriceList
The PriceList entity of the SAP Business One Service Layer
Fields
- RoundingMethod? BoRoundingMethod - OData EnumType 'BoRoundingMethod'. Serialised by the Service Layer as the member name
- GroupNum? BoPriceListGroupNum - OData EnumType 'BoPriceListGroupNum'. Serialised by the Service Layer as the member name
- BasePriceList? Signed32 -
- Factor? decimal -
- PriceListNo? Signed32 -
- PriceListName? string -
- IsGrossPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Active? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ValidFrom? string -
- ValidTo? string -
- DefaultPrimeCurrency? string -
- DefaultAdditionalCurrency1? string -
- DefaultAdditionalCurrency2? string -
- RoundingRule? BoRoundingRule - OData EnumType 'BoRoundingRule'. Serialised by the Service Layer as the member name
- FixedAmount? decimal -
- StockTransfers? StockTransfer[] -
- PurchaseQuotations? Document[] -
- CorrectionInvoiceReversal? Document[] -
- CorrectionInvoice? Document[] -
- PurchaseDeliveryNotes? Document[] -
- CorrectionPurchaseInvoice? Document[] -
- InventoryGenEntries? Document[] -
- Orders? Document[] -
- InventoryGenExits? Document[] -
- Drafts? Document[] -
- ReturnRequest? Document[] -
- DeliveryNotes? Document[] -
- PurchaseInvoices? Document[] -
- SelfInvoices? Document[] -
- Invoices? Document[] -
- CreditNotes? Document[] -
- PurchaseCreditNotes? Document[] -
- DownPayments? Document[] -
- PurchaseDownPayments? Document[] -
- PurchaseReturns? Document[] -
- PurchaseOrders? Document[] -
- SelfCreditMemos? Document[] -
- Quotations? Document[] -
- Returns? Document[] -
- SpecialPrices? SpecialPrice[] -
- GoodsReturnRequest? Document[] -
- CorrectionPurchaseInvoiceReversal? Document[] -
- PurchaseRequests? Document[] -
sap.businessone.inventory: PriceListsCollectionResponse
A paged collection of PriceLists entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? PriceList[] -
- odataNextLink? string -
sap.businessone.inventory: RelatedDocument
The RelatedDocument complex type of the SAP Business One Service Layer
Fields
- absEnry? Signed32 -
- absEntry? Signed32 -
- uUID? string -
- docTye? RelatedDocumentTypeEnum -
- docType? RelatedDocumentTypeEnum -
sap.businessone.inventory: SerialNumber
The SerialNumber complex type of the SAP Business One Service Layer
Fields
- ManufacturerSerialNumber? string -
- InternalSerialNumber? string -
- ExpiryDate? string -
- ManufactureDate? string -
- ReceptionDate? string -
- WarrantyStart? string -
- WarrantyEnd? string -
- Location? string -
- Notes? string -
- BatchID? string -
- SystemSerialNumber? Signed32 -
- BaseLineNumber? Signed32 -
- Quantity? decimal -
- TrackingNote? Signed32 -
- TrackingNoteLine? Signed32 -
- ItemCode? string -
sap.businessone.inventory: SerialNumberDetail
The SerialNumberDetail entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- MfrSerialNo? string -
- SerialNumber? string -
- LotNumber? string -
- SystemNumber? Signed32 -
- AdmissionDate? string -
- ManufacturingDate? string -
- ExpirationDate? string -
- MfrWarrantyStart? string -
- MFrWarrantyEnd? string -
- Location? string -
- Details? string -
- Item? Item - The
Itementity of the SAP Business One Service Layer
sap.businessone.inventory: SerialNumberDetailsCollectionResponse
A paged collection of SerialNumberDetails entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? SerialNumberDetail[] -
- odataNextLink? string -
sap.businessone.inventory: ShippingType
The ShippingType entity of the SAP Business One Service Layer
Fields
- Code? Signed32 -
- Name? string -
- Website? string -
- PurchaseQuotations? Document[] -
- Items? Item[] -
- CorrectionInvoiceReversal? Document[] -
- CorrectionInvoice? Document[] -
- PurchaseDeliveryNotes? Document[] -
- CorrectionPurchaseInvoice? Document[] -
- InventoryGenEntries? Document[] -
- Orders? Document[] -
- InventoryGenExits? Document[] -
- Drafts? Document[] -
- ReturnRequest? Document[] -
- DeliveryNotes? Document[] -
- PurchaseInvoices? Document[] -
- SelfInvoices? Document[] -
- Invoices? Document[] -
- CreditNotes? Document[] -
- PurchaseCreditNotes? Document[] -
- DownPayments? Document[] -
- PurchaseDownPayments? Document[] -
- PurchaseReturns? Document[] -
- PurchaseOrders? Document[] -
- SelfCreditMemos? Document[] -
- Quotations? Document[] -
- Returns? Document[] -
- GoodsReturnRequest? Document[] -
- CorrectionPurchaseInvoiceReversal? Document[] -
- PurchaseRequests? Document[] -
sap.businessone.inventory: ShippingTypesCollectionResponse
A paged collection of ShippingTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? ShippingType[] -
- odataNextLink? string -
sap.businessone.inventory: SNBLines
The SNBLines complex type of the SAP Business One Service Layer
Fields
- newCost? decimal -
- debitCredit? decimal -
- admissionDate? string -
- snbAbsEntry? Signed32 -
- systemNumber? Signed32 -
- manufactureNumber? string -
- expirationDate? string -
- lotNumber? string -
- baseLine? Signed32 -
sap.businessone.inventory: SpecialPrice
The SpecialPrice entity of the SAP Business One Service Layer
Fields
- ItemCode? string -
- CardCode? string -
- Price? decimal -
- Currency? string -
- DiscountPercent? decimal -
- PriceListNum? Signed32 -
- AutoUpdate? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SourcePrice? SourceCurrencyEnum - OData EnumType 'SourceCurrencyEnum'. Serialised by the Service Layer as the member name
- Valid? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ValidFrom? string -
- ValidTo? string -
- SpecialPriceDataAreas? SpecialPriceDataArea[] -
- Item? Item - The
Itementity of the SAP Business One Service Layer
- PriceList? PriceList - The
PriceListentity of the SAP Business One Service Layer
sap.businessone.inventory: SpecialPriceDataArea
The SpecialPriceDataArea complex type of the SAP Business One Service Layer
Fields
- PriceCurrency? string -
- AutoUpdate? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Dateto? string -
- Discount? decimal -
- SpecialPrice? decimal -
- DateFrom? string -
- BPCode? string -
- PriceListNo? Signed32 -
- ItemNo? string -
- RowNumber? Signed32 -
- SpecialPriceQuantityAreas? SpecialPriceQuantityArea[] -
sap.businessone.inventory: SpecialPriceQuantityArea
The SpecialPriceQuantityArea complex type of the SAP Business One Service Layer
Fields
- Quantity? decimal -
- SPDARowNumber? Signed32 -
- SpecialPrice? decimal -
- ItemNo? string -
- BPCode? string -
- RowNumber? Signed32 -
- PriceCurrency? string -
- Discountin? decimal -
- UoMEntry? Signed32 -
sap.businessone.inventory: SpecialPricesCollectionResponse
A paged collection of SpecialPrices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? SpecialPrice[] -
- odataNextLink? string -
sap.businessone.inventory: StockTaking
The StockTaking entity of the SAP Business One Service Layer
Fields
- ItemCode? string -
- WarehouseCode? string -
- Counted? decimal -
- Item? Item - The
Itementity of the SAP Business One Service Layer
- Warehouse? Warehouse - The
Warehouseentity of the SAP Business One Service Layer
sap.businessone.inventory: StockTakingsCollectionResponse
A paged collection of StockTakings entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? StockTaking[] -
- odataNextLink? string -
sap.businessone.inventory: StockTransfer
The StockTransfer entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 -
- Series? Signed32 -
- Printed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocDate? string -
- DueDate? string -
- CardCode? string -
- CardName? string -
- Address? string -
- Reference1? string -
- Reference2? string -
- Comments? string -
- JournalMemo? string -
- PriceList? Signed32 -
- SalesPersonCode? Signed32 -
- FromWarehouse? string -
- ToWarehouse? string -
- CreationDate? string -
- UpdateDate? string -
- FinancialPeriod? Signed32 -
- TransNum? Signed32 -
- DocNum? Signed32 -
- TaxDate? string -
- ContactPerson? Signed32 -
- FolioPrefixString? string -
- FolioNumber? Signed32 -
- DocObjectCode? string -
- AuthorizationStatus? StockTransferAuthorizationStatusEnum - OData EnumType 'StockTransferAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
- BPLID? Signed32 -
- BPLName? string -
- VATRegNum? string -
- AuthorizationCode? string -
- StartDeliveryDate? string -
- StartDeliveryTime? string -
- EndDeliveryDate? string -
- EndDeliveryTime? string -
- VehiclePlate? string -
- ATDocumentType? string -
- EDocExportFormat? Signed32 -
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string -
- PointOfIssueCode? string -
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 -
- FolioNumberTo? Signed32 -
- AttachmentEntry? Signed32 -
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- ShipToCode? string -
- SAPPassport? string -
- LastPageFolioNumber? Signed32 -
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateQRCodeFrom? string -
- CopyDutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- StockTransfer_ApprovalRequests? StockTransferApprovalRequest[] -
- ElectronicProtocols? ElectronicProtocol[] -
- StockTransferLines? StockTransferLine[] -
- StockTransferTaxExtension? StockTransferTaxExtension - The
StockTransferTaxExtensioncomplex type of the SAP Business One Service Layer
- DocumentReferences? DocumentReference[] -
- EDeliveryInfo? EDeliveryInfo - The
EDeliveryInfocomplex type of the SAP Business One Service Layer
- PriceList2? PriceList - The
PriceListentity of the SAP Business One Service Layer
- Warehouse? Warehouse - The
Warehouseentity of the SAP Business One Service Layer
sap.businessone.inventory: StockTransferApprovalRequest
The StockTransfer_ApprovalRequest complex type of the SAP Business One Service Layer
Fields
- activeForUpdate? BoYesNoEnum -
- approvalTemplatesID? Signed32 -
- remarks? string -
- approvalTemplatesName? string -
sap.businessone.inventory: StockTransferDraftsCollectionResponse
A paged collection of StockTransferDrafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? StockTransfer[] -
- odataNextLink? string -
sap.businessone.inventory: StockTransferDraftService_GetApprovalTemplates_body
Represents the request payload for the StockTransferDraftService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- stockTransfer? StockTransfer -
sap.businessone.inventory: StockTransferLine
The StockTransferLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 -
- DocEntry? Signed32 -
- ItemCode? string -
- ItemDescription? string -
- Quantity? decimal -
- Price? decimal -
- Currency? string -
- Rate? decimal -
- DiscountPercent? decimal -
- VendorNum? string -
- SerialNumber? string -
- WarehouseCode? string -
- FromWarehouseCode? string -
- ProjectCode? string -
- Factor? decimal -
- Factor2? decimal -
- Factor3? decimal -
- Factor4? decimal -
- DistributionRule? string -
- DistributionRule2? string -
- DistributionRule3? string -
- DistributionRule4? string -
- DistributionRule5? string -
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MeasureUnit? string -
- UnitsOfMeasurment? decimal -
- BaseType? InvBaseDocTypeEnum - OData EnumType 'InvBaseDocTypeEnum'. Serialised by the Service Layer as the member name
- BaseLine? Signed32 -
- BaseEntry? Signed32 -
- UnitPrice? decimal -
- UoMEntry? Signed32 -
- UoMCode? string -
- InventoryQuantity? decimal -
- RemainingOpenQuantity? decimal -
- RemainingOpenInventoryQuantity? decimal -
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- VatGroup? string -
- AdditionalIdentifier? string -
- WeightOfRecycledPlastic? decimal -
- PlasticPackageExemptionReason? string -
- SerialNumbers? SerialNumber[] -
- BatchNumbers? BatchNumber[] -
- CCDNumbers? CCDNumber[] -
- StockTransferLinesBinAllocations? StockTransferLinesBinAllocation[] -
- DocLinePickLists? DocLinePickList[] -
sap.businessone.inventory: StockTransferLinesBinAllocation
The StockTransferLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 -
- Quantity? decimal -
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 -
- BinActionType? BinActionTypeEnum - OData EnumType 'BinActionTypeEnum'. Serialised by the Service Layer as the member name
- BaseLineNumber? Signed32 -
sap.businessone.inventory: StockTransfersCollectionResponse
A paged collection of StockTransfers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? StockTransfer[] -
- odataNextLink? string -
sap.businessone.inventory: StockTransferService_GetApprovalTemplates_body
Represents the request payload for the StockTransferService_GetApprovalTemplates operation of the SAP Business One Service Layer
Fields
- stockTransfer? StockTransfer -
sap.businessone.inventory: StockTransferTaxExtension
The StockTransferTaxExtension complex type of the SAP Business One Service Layer
Fields
- SupportVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FormNumber? string -
- TransactionCategory? string -
sap.businessone.inventory: TaxExtension
The TaxExtension complex type of the SAP Business One Service Layer
Fields
- buildingS? string -
- taxId3? string -
- taxId2? string -
- taxId5? string -
- taxId4? string -
- packQuantity? Signed32 -
- taxId1? string -
- taxId0? string -
- vehicle? string -
- portCode? string -
- taxId7? string -
- buildingB? string -
- taxId6? string -
- taxId9? string -
- taxId8? string -
- carrier? string -
- shipUnitNo? Signed32 -
- streetS? string -
- differentialOfTaxRate? Signed32 -
- zipCodeS? string -
- countryB? string -
- grossWeight? decimal -
- globalLocationNumberB? string -
- packDescription? string -
- mainUsage? Signed32 -
- docEntry? Signed32 -
- brand? string -
- stateS? string -
- countryS? string -
- blockB? string -
- state? string -
- globalLocationNumberS? string -
- importOrExportType? ImportOrExportTypeEnum -
- vehicleState? string -
- blockS? string -
- stateB? string -
- cityS? string -
- county? string -
- boEValue? decimal -
- nFRef? string -
- countyB? string -
- billOfEntryNo? string -
- countyS? string -
- taxId14? string -
- taxId13? string -
- claimRefund? BoYesNoEnum -
- taxId12? string -
- netWeight? decimal -
- originalBillOfEntryDate? string -
- billOfEntryDate? string -
- zipCodeB? string -
- importOrExport? BoYesNoEnum -
- originalBillOfEntryNo? string -
- streetB? string -
- cityB? string -
- isIGSTAccount? BoYesNoEnum -
- incoterms? string -
sap.businessone.inventory: TeamCounter
The TeamCounter complex type of the SAP Business One Service Layer
Fields
- counterType? CounterTypeEnum -
- counterName? string -
- counterNumber? Signed32 -
- counterVisualOrder? Signed32 -
- documentEntry? Signed32 -
- counterID? Signed32 -
sap.businessone.inventory: TrackingNote
The TrackingNote entity of the SAP Business One Service Layer
Fields
- cCDNumber? string -
- isDirectImport? BoYesNoEnum -
- trackingNoteItemCollection? TrackingNoteItem[] -
- trackingNoteNumber? Signed32 -
- countryOfOrigin? string -
- trackingNoteBrokerCollection? TrackingNoteBroker[] -
- customsTerminal? string -
- date? string -
sap.businessone.inventory: TrackingNoteBroker
The TrackingNoteBroker complex type of the SAP Business One Service Layer
Fields
- agreementNumber? Signed32 -
- trackingNoteNumber? Signed32 -
- trackingNoteLineNumber? Signed32 -
- bPCode? string -
sap.businessone.inventory: TrackingNoteItem
The TrackingNoteItem complex type of the SAP Business One Service Layer
Fields
- itemCCDNumber? string -
- itemCode? string -
- customsGroupCode? Signed32 -
- trackingNoteNumber? Signed32 -
- accumulatedAPQuantity? decimal -
- accumulatedRelocatedQuantity? decimal -
- countryOfOrigin? string -
- trackingNoteLineNumber? Signed32 -
- quantity? decimal -
- accumulatedARQuantity? decimal -
sap.businessone.inventory: TrackingNoteParams
The TrackingNoteParams complex type of the SAP Business One Service Layer
Fields
- cCDNumber? string -
- trackingNoteNumber? Signed32 -
sap.businessone.inventory: TrackingNotesCollectionResponse
A paged collection of TrackingNotes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? TrackingNote[] -
- odataNextLink? string -
sap.businessone.inventory: UnitOfMeasurement
The UnitOfMeasurement entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 -
- Code? string -
- Name? string -
- Length1? decimal -
- Length1Unit? Signed32 -
- Length2? decimal -
- Length2Unit? Signed32 -
- Width1? decimal -
- Width1Unit? Signed32 -
- Width2? decimal -
- Width2Unit? Signed32 -
- Height1? decimal -
- Height1Unit? Signed32 -
- Height2? decimal -
- Height2Unit? Signed32 -
- Volume? decimal -
- VolumeUnit? Signed32 -
- Weight1? decimal -
- Weight1Unit? Signed32 -
- Weight2? decimal -
- Weight2Unit? Signed32 -
- InternationalSymbol? string -
- EWBUnitEntry? Signed32 -
- PPWeight1? decimal -
- PPWe1Unit? Signed32 -
- PPWeight2? decimal -
- PPWe2Unit? Signed32 -
- ItemGroups? ItemGroups[] -
- Items? Item[] -
- BinLocations? BinLocation[] -
- BarCodes? BarCode[] -
- UnitOfMeasurementGroups? UnitOfMeasurementGroup[] -
sap.businessone.inventory: UnitOfMeasurementGroup
The UnitOfMeasurementGroup entity of the SAP Business One Service Layer
Fields
- itemGroups? ItemGroups[] -
- unitOfMeasurement? UnitOfMeasurement -
- uoMGroupDefinitionCollection? UoMGroupDefinition[] -
- baseUoM? Signed32 -
- binLocations? BinLocation[] -
- items? Item[] -
- absEntry? Signed32 -
- code? string -
- name? string -
sap.businessone.inventory: UnitOfMeasurementGroupParams
The UnitOfMeasurementGroupParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
- code? string -
sap.businessone.inventory: UnitOfMeasurementGroupsCollectionResponse
A paged collection of UnitOfMeasurementGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UnitOfMeasurementGroup[] -
- odataNextLink? string -
sap.businessone.inventory: UnitOfMeasurementParams
The UnitOfMeasurementParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 -
- code? string -
sap.businessone.inventory: UnitOfMeasurementsCollectionResponse
A paged collection of UnitOfMeasurements entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? UnitOfMeasurement[] -
- odataNextLink? string -
sap.businessone.inventory: UoMGroupDefinition
The UoMGroupDefinition complex type of the SAP Business One Service Layer
Fields
- weightFactor? Signed32 -
- alternateUoM? Signed32 -
- baseWgtFtr? Signed32 -
- alternateQuantity? decimal -
- active? BoYesNoEnum -
- udfFactor? Signed32 -
- baseQuantity? decimal -
- baseUdfFtr? Signed32 -
sap.businessone.inventory: UoMPrice
The UoMPrice complex type of the SAP Business One Service Layer
Fields
- PriceList? Signed32 -
- UoMEntry? Signed32 -
- ReduceBy? decimal -
- Price? decimal -
- Currency? string -
- AdditionalReduceBy1? decimal -
- AdditionalPrice1? decimal -
- AdditionalCurrency1? string -
- AdditionalReduceBy2? decimal -
- AdditionalPrice2? decimal -
- AdditionalCurrency2? string -
- Auto? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: Warehouse
The Warehouse entity of the SAP Business One Service Layer
Fields
- Street? string -
- StockInflationOffsetAccount? string -
- ZipCode? string -
- DecreasingAccount? string -
- PurchaseAccount? string -
- EURevenuesAccount? string -
- ReturningAccount? string -
- ShippedGoodsAccount? string -
- StockInflationAdjustAccount? string -
- AllowUseTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CostInflationAccount? string -
- ForeignExpensesAccount? string -
- EUExpensesAccount? string -
- CostInflationOffsetAccount? string -
- ExpensesClearingAccount? string -
- PurchaseReturningAccount? string -
- VATInRevenueAccount? string -
- FederalTaxID? string -
- Location? Signed32 -
- Block? string -
- ExpenseAccount? string -
- DecreaseGLAccount? string -
- RevenuesAccount? string -
- TaxGroup? string -
- ExemptRevenuesAccount? string -
- PurchaseOffsetAccount? string -
- CostOfGoodsSold? string -
- WarehouseCode? string -
- State? string -
- City? string -
- PriceDifferencesAccount? string -
- VarianceAccount? string -
- Country? string -
- IncreaseGLAccount? string -
- ExchangeRateDifferencesAccount? string -
- WIPMaterialAccount? string -
- WarehouseName? string -
- DropShip? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WIPMaterialVarianceAccount? string -
- TransfersAcc? string -
- InternalKey? Signed32 -
- ForeignRevenuesAcc? string -
- BuildingFloorRoom? string -
- County? string -
- Nettable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IncreasingAcc? string -
- ExpenseOffsetingAct? string -
- GoodsClearingAcc? string -
- StockAccount? string -
- BusinessPlaceID? Signed32 -
- PurchaseCreditAcc? string -
- EUPurchaseCreditAcc? string -
- ForeignPurchaseCreditAcc? string -
- SalesCreditAcc? string -
- SalesCreditEUAcc? string -
- ExemptedCredits? string -
- SalesCreditForeignAcc? string -
- NegativeInventoryAdjustmentAccount? string -
- WHShipToName? string -
- Excisable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WHIncomingCenvatAccount? string -
- WHOutgoingCenvatAccount? string -
- StockInTransitAccount? string -
- WipOffsetProfitAndLossAccount? string -
- InventoryOffsetProfitAndLossAccount? string -
- AddressType? string -
- StreetNo? string -
- Storekeeper? Signed32 -
- Shipper? string -
- ManageSerialAndBatchNumbers? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GlobalLocationNumber? string -
- EnableBinLocations? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BinLocCodeSeparator? string -
- DefaultBin? Signed32 -
- DefaultBinEnforced? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AutoAllocOnIssue? BoDocWhsAutoIssueMethod - OData EnumType 'BoDocWhsAutoIssueMethod'. Serialised by the Service Layer as the member name
- EnableReceivingBinLocations? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReceivingBinLocationsBy? ReceivingBinLocationsMethodEnum - OData EnumType 'ReceivingBinLocationsMethodEnum'. Serialised by the Service Layer as the member name
- PurchaseBalanceAccount? string -
- Inactive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RestrictReceiptToEmptyBinLocation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReceiveUpToMaxQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AutoAllocOnReceipt? AutoAllocOnReceiptMethodEnum - OData EnumType 'AutoAllocOnReceiptMethodEnum'. Serialised by the Service Layer as the member name
- ReceiveUpToMaxWeight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReceiveUpToMethod? ReceivingUpToMethodEnum - OData EnumType 'ReceivingUpToMethodEnum'. Serialised by the Service Layer as the member name
- LegalText? string -
- AddressName2? string -
- AddressName3? string -
- StockTransfers? StockTransfer[] -
- WarehouseLocation? WarehouseLocation - The
WarehouseLocationentity of the SAP Business One Service Layer
- BinLocation? BinLocation - The
BinLocationentity of the SAP Business One Service Layer
- BinLocations? BinLocation[] -
- StockTakings? StockTaking[] -
- InventoryTransferRequests? StockTransfer[] -
- StockTransferDrafts? StockTransfer[] -
sap.businessone.inventory: WarehouseLocation
The WarehouseLocation entity of the SAP Business One Service Layer
Fields
- Code? Signed32 -
- Name? string -
- LSTVATNumber? string -
- CSTNumber? string -
- ExemptionNumber? string -
- TANNumber? string -
- ServiceTaxNumber? string -
- AssesseeType? string -
- CompanyType? string -
- NatureOfBusiness? string -
- TINNumber? string -
- RegistrationType? string -
- EccNumber? string -
- CERange? string -
- CEDivision? string -
- CECommissionerate? string -
- ManufacturerCode? string -
- Jurisdiction? string -
- Street? string -
- Block? string -
- ZipCode? string -
- City? string -
- County? string -
- Country? string -
- State? string -
- PANNumber? string -
- CERegisterNumber? string -
- BuildingFloorRoom? string -
- GSTIN? string -
- GstType? BoGSTRegnTypeEnum - OData EnumType 'BoGSTRegnTypeEnum'. Serialised by the Service Layer as the member name
- GSTTDS? string -
- GSTISD? string -
- Warehouses? Warehouse[] -
- Items? Item[] -
sap.businessone.inventory: WarehouseLocationsCollectionResponse
A paged collection of WarehouseLocations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WarehouseLocation[] -
- odataNextLink? string -
sap.businessone.inventory: WarehousesCollectionResponse
A paged collection of Warehouses entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? Warehouse[] -
- odataNextLink? string -
sap.businessone.inventory: WarehouseSublevelCode
The WarehouseSublevelCode entity of the SAP Business One Service Layer
Fields
- description? string -
- binLocationField? BinLocationField -
- warehouseSublevel? Signed32 -
- absEntry? Signed32 -
- code? string -
sap.businessone.inventory: WarehouseSublevelCodeParams
The WarehouseSublevelCodeParams complex type of the SAP Business One Service Layer
Fields
- warehouseSublevel? Signed32 -
- absEntry? Signed32 -
- code? string -
sap.businessone.inventory: WarehouseSublevelCodesCollectionResponse
A paged collection of WarehouseSublevelCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WarehouseSublevelCode[] -
- odataNextLink? string -
sap.businessone.inventory: WeightMeasure
The WeightMeasure entity of the SAP Business One Service Layer
Fields
- UnitCode? Signed32 -
- UnitDisplay? string -
- UnitName? string -
- UnitWeightinmg? decimal -
- BinLocations? BinLocation[] -
sap.businessone.inventory: WeightMeasuresCollectionResponse
A paged collection of WeightMeasures entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string -
- value? WeightMeasure[] -
- odataNextLink? string -
sap.businessone.inventory: WithholdingTaxData
The WithholdingTaxData complex type of the SAP Business One Service Layer
Fields
- WTCode? string -
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- RoundingType? string -
- Rate? decimal -
- Criteria? string -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetDocumentType? Signed32 -
sap.businessone.inventory: WithholdingTaxDataWTX
The WithholdingTaxDataWTX complex type of the SAP Business One Service Layer
Fields
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- Rate? decimal -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? string -
- WTAbsId? string -
- ExemptRate? decimal -
- BaseNetAmountSys? decimal -
- BaseNetAmountFC? decimal -
- BaseNetAmount? decimal -
- BaseVatmountSys? decimal -
- BaseVatmountFC? decimal -
- BaseVatmount? decimal -
- AccumBaseAmountSys? decimal -
- AccumBaseAmountFC? decimal -
- AccumBaseAmount? decimal -
- AccumWTaxAmountSys? decimal -
- AccumWTaxAmountFC? decimal -
- AccumWTaxAmount? decimal -
sap.businessone.inventory: WithholdingTaxLine
The WithholdingTaxLine complex type of the SAP Business One Service Layer
Fields
- WTCode? string -
- WTAmountSys? decimal -
- WTAmountFC? decimal -
- WTAmount? decimal -
- WithholdingType? string -
- TaxableAmountinSys? decimal -
- TaxableAmountFC? decimal -
- TaxableAmount? decimal -
- RoundingType? string -
- Rate? decimal -
- Criteria? string -
- Category? string -
- BaseType? string -
- AppliedWTAmountSys? decimal -
- AppliedWTAmountFC? decimal -
- AppliedWTAmount? decimal -
- GLAccount? string -
- LineNum? Signed32 -
- BaseDocEntry? Signed32 -
- BaseDocLine? Signed32 -
- BaseDocType? Signed32 -
- BaseDocumentReference? Signed32 -
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 -
- TargetDocumentType? Signed32 -
- CSTCodeIncoming? string -
- CSTCodeOutgoing? string -
- Doc1LineNum? Signed32 -
Union types
sap.businessone.inventory: ElectronicDocGenTypeEnum
ElectronicDocGenTypeEnum
OData EnumType 'ElectronicDocGenTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ClosingOptionEnum
ClosingOptionEnum
OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: CancelStatusEnum
CancelStatusEnum
OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoAdEpnsDistribMethods
BoAdEpnsDistribMethods
OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoPayTermDueTypes
BoPayTermDueTypes
OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: TypeOfAdvancedRulesEnum
TypeOfAdvancedRulesEnum
OData EnumType 'TypeOfAdvancedRulesEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoDocSpecialLineType
BoDocSpecialLineType
OData EnumType 'BoDocSpecialLineType'. Serialised by the Service Layer as the member name
sap.businessone.inventory: PriceModeDocumentEnum
PriceModeDocumentEnum
OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: CycleCountDeterminationCycleByEnum
CycleCountDeterminationCycleByEnum
OData EnumType 'CycleCountDeterminationCycleByEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoTaxTypes
BoTaxTypes
OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoDocSummaryTypes
BoDocSummaryTypes
OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: GSTTransactionTypeEnum
GSTTransactionTypeEnum
OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoMaterialTypes
BoMaterialTypes
OData EnumType 'BoMaterialTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: CountingLineStatusEnum
CountingLineStatusEnum
OData EnumType 'CountingLineStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoTransactionTypeEnum
BoTransactionTypeEnum
OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: DiscountGroupDiscountTypeEnum
DiscountGroupDiscountTypeEnum
OData EnumType 'DiscountGroupDiscountTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ItemUoMTypeEnum
ItemUoMTypeEnum
OData EnumType 'ItemUoMTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: EDocStatusEnum
EDocStatusEnum
OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoExpenseOperationTypeEnum
BoExpenseOperationTypeEnum
OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ItemClassEnum
ItemClassEnum
OData EnumType 'ItemClassEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: InventoryOpeningBalancePriceSourceEnum
InventoryOpeningBalancePriceSourceEnum
OData EnumType 'InventoryOpeningBalancePriceSourceEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: LinkReferenceTypeEnum
LinkReferenceTypeEnum
OData EnumType 'LinkReferenceTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ReceivingBinLocationsMethodEnum
ReceivingBinLocationsMethodEnum
OData EnumType 'ReceivingBinLocationsMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: SAFTProductTypeEnum
SAFTProductTypeEnum
OData EnumType 'SAFTProductTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: InventoryPostingCopyOptionEnum
InventoryPostingCopyOptionEnum
OData EnumType 'InventoryPostingCopyOptionEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: RelatedDocumentTypeEnum
RelatedDocumentTypeEnum
OData EnumType 'RelatedDocumentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: DiscountGroupRelationsEnum
DiscountGroupRelationsEnum
OData EnumType 'DiscountGroupRelationsEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: SourceCurrencyEnum
SourceCurrencyEnum
OData EnumType 'SourceCurrencyEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoInterimDocTypes
BoInterimDocTypes
OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoPriceListGroupNum
BoPriceListGroupNum
OData EnumType 'BoPriceListGroupNum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: EWBSupplyTypeEnum
EWBSupplyTypeEnum
OData EnumType 'EWBSupplyTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: StockTransferAuthorizationStatusEnum
StockTransferAuthorizationStatusEnum
OData EnumType 'StockTransferAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoProcurementMethod
BoProcurementMethod
OData EnumType 'BoProcurementMethod'. Serialised by the Service Layer as the member name
sap.businessone.inventory: SpecialProductTypeEnum
SpecialProductTypeEnum
OData EnumType 'SpecialProductTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ImportOrExportTypeEnum
ImportOrExportTypeEnum
OData EnumType 'ImportOrExportTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BinRestrictTransactionEnum
BinRestrictTransactionEnum
OData EnumType 'BinRestrictTransactionEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ItemTypeEnum
ItemTypeEnum
OData EnumType 'ItemTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: EDocGenerationTypeEnum
EDocGenerationTypeEnum
OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: FolioLetterEnum
FolioLetterEnum
OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoDocWhsAutoIssueMethod
BoDocWhsAutoIssueMethod
OData EnumType 'BoDocWhsAutoIssueMethod'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoServiceSupplyMethods
BoServiceSupplyMethods
OData EnumType 'BoServiceSupplyMethods'. Serialised by the Service Layer as the member name
sap.businessone.inventory: GSTTaxCategoryEnum
GSTTaxCategoryEnum
OData EnumType 'GSTTaxCategoryEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoFrequency
BoFrequency
OData EnumType 'BoFrequency'. Serialised by the Service Layer as the member name
sap.businessone.inventory: AssetStatusEnum
AssetStatusEnum
OData EnumType 'AssetStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ElectronicDocProtocolCodeEnum
ElectronicDocProtocolCodeEnum
OData EnumType 'ElectronicDocProtocolCodeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BinActionTypeEnum
BinActionTypeEnum
OData EnumType 'BinActionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoGLMethods
BoGLMethods
OData EnumType 'BoGLMethods'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ElecCommStatusEnum
ElecCommStatusEnum
OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: EWBTransactionTypeEnum
EWBTransactionTypeEnum
OData EnumType 'EWBTransactionTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoManageMethod
BoManageMethod
OData EnumType 'BoManageMethod'. Serialised by the Service Layer as the member name
sap.businessone.inventory: GeneratedAssetStatusEnum
GeneratedAssetStatusEnum
OData EnumType 'GeneratedAssetStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoPickStatus
BoPickStatus
OData EnumType 'BoPickStatus'. Serialised by the Service Layer as the member name
sap.businessone.inventory: MultipleCounterRoleEnum
MultipleCounterRoleEnum
OData EnumType 'MultipleCounterRoleEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: InventoryPostingPriceSourceEnum
InventoryPostingPriceSourceEnum
OData EnumType 'InventoryPostingPriceSourceEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BinRestrictionBatchEnum
BinRestrictionBatchEnum
OData EnumType 'BinRestrictionBatchEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoItemTreeTypes
BoItemTreeTypes
OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BinRestrictItemEnum
BinRestrictItemEnum
OData EnumType 'BinRestrictItemEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: SOIExcisableTypeEnum
SOIExcisableTypeEnum
OData EnumType 'SOIExcisableTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: PrintStatusEnum
PrintStatusEnum
OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoCorInvItemStatus
BoCorInvItemStatus
OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
sap.businessone.inventory: DocumentPriceSourceEnum
DocumentPriceSourceEnum
OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoDocumentSubType
BoDocumentSubType
OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoRoundingMethod
BoRoundingMethod
OData EnumType 'BoRoundingMethod'. Serialised by the Service Layer as the member name
sap.businessone.inventory: EndTypeEnum
EndTypeEnum
OData EnumType 'EndTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: DocumentAuthorizationStatusEnum
DocumentAuthorizationStatusEnum
OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoDocumentLinePickStatus
BoDocumentLinePickStatus
OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoSoStatus
BoSoStatus
OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ReferencedObjectTypeEnum
ReferencedObjectTypeEnum
OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: EDocTypeEnum
EDocTypeEnum
OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoDocLineType
BoDocLineType
OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
sap.businessone.inventory: CountingDocumentStatusEnum
CountingDocumentStatusEnum
OData EnumType 'CountingDocumentStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BinRestrictUoMEnum
BinRestrictUoMEnum
OData EnumType 'BinRestrictUoMEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: RecurrenceSequenceEnum
RecurrenceSequenceEnum
OData EnumType 'RecurrenceSequenceEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: AttributeGroupFieldTypeEnum
AttributeGroupFieldTypeEnum
OData EnumType 'AttributeGroupFieldTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoServicePaymentMethods
BoServicePaymentMethods
OData EnumType 'BoServicePaymentMethods'. Serialised by the Service Layer as the member name
sap.businessone.inventory: DiscountGroupTypeEnum
DiscountGroupTypeEnum
OData EnumType 'DiscountGroupTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoStatus
BoStatus
OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
sap.businessone.inventory: RepeatOptionEnum
RepeatOptionEnum
OData EnumType 'RepeatOptionEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoIssueMethod
BoIssueMethod
OData EnumType 'BoIssueMethod'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoAdEpnsTaxTypes
BoAdEpnsTaxTypes
OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: RecurrenceDayOfWeekEnum
RecurrenceDayOfWeekEnum
OData EnumType 'RecurrenceDayOfWeekEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: InvBaseDocTypeEnum
InvBaseDocTypeEnum
OData EnumType 'InvBaseDocTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoFatherCardTypes
BoFatherCardTypes
OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: ReceivingUpToMethodEnum
ReceivingUpToMethodEnum
OData EnumType 'ReceivingUpToMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: DownPaymentTypeEnum
DownPaymentTypeEnum
OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoDocWhsUpdateTypes
BoDocWhsUpdateTypes
OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoYesNoEnum
BoYesNoEnum
OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: LineTypeEnum
LineTypeEnum
OData EnumType 'LineTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: IssuePrimarilyByEnum
IssuePrimarilyByEnum
OData EnumType 'IssuePrimarilyByEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: CounterTypeEnum
CounterTypeEnum
OData EnumType 'CounterTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoInventorySystem
BoInventorySystem
OData EnumType 'BoInventorySystem'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoRoundingRule
BoRoundingRule
OData EnumType 'BoRoundingRule'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BinLocationFieldTypeEnum
BinLocationFieldTypeEnum
OData EnumType 'BinLocationFieldTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: DocumentDeliveryTypeEnum
DocumentDeliveryTypeEnum
OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: CommissionTradeTypeEnum
CommissionTradeTypeEnum
OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: TransTypesEnum
TransTypesEnum
OData EnumType 'TransTypesEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoTaxOnInstallmentsTypeEnum
BoTaxOnInstallmentsTypeEnum
OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoDocItemType
BoDocItemType
OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
sap.businessone.inventory: DiscountGroupBaseObjectEnum
DiscountGroupBaseObjectEnum
OData EnumType 'DiscountGroupBaseObjectEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoObjectTypes
BoObjectTypes
OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoGSTRegnTypeEnum
BoGSTRegnTypeEnum
OData EnumType 'BoGSTRegnTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: AutoAllocOnReceiptMethodEnum
AutoAllocOnReceiptMethodEnum
OData EnumType 'AutoAllocOnReceiptMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoPlanningSystem
BoPlanningSystem
OData EnumType 'BoPlanningSystem'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoMRPComponentWarehouse
BoMRPComponentWarehouse
OData EnumType 'BoMRPComponentWarehouse'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BatchDetailServiceStatusEnum
BatchDetailServiceStatusEnum
OData EnumType 'BatchDetailServiceStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: CountingTypeEnum
CountingTypeEnum
OData EnumType 'CountingTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.inventory: BoDocumentTypes
BoDocumentTypes
OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
Import
import ballerinax/sap.businessone.inventory;Metadata
Released date: 12 days ago
Version: 1.0.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 1
Current verison: 0
Weekly downloads
Keywords
Name/SAP Business One Inventory
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Inventory
ERP
Contributors