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

The Service Layer endpoint follows the pattern https://<host>:50000/b1s/v1.
Quickstart
To use the sap.businessone.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 - Ship to street field
- ShipToStreetNo? string - Ship to street number field
- ShipToBlock? string - Ship to block field
- ShipToBuilding? string - Ship to building field
- ShipToCity? string - Ship to city field
- ShipToZipCode? string - Ship to zip code field
- ShipToCounty? string - Ship to county field
- ShipToState? string - Ship to state field
- ShipToCountry? string - Ship to country field
- ShipToAddressType? string - Ship to address type field
- BillToStreet? string - Bill to street field
- BillToStreetNo? string - Bill to street number field
- BillToBlock? string - Bill to block field
- BillToBuilding? string - Bill to building field
- BillToCity? string - Bill to city field
- BillToZipCode? string - Bill to zip code field
- BillToCounty? string - Bill to county field
- BillToState? string - Bill to state field
- BillToCountry? string - Bill to country field
- BillToAddressType? string - Bill to address type field
- ShipToGlobalLocationNumber? string - Ship to global location number field
- BillToGlobalLocationNumber? string - Bill to global location number field
- ShipToAddress2? string - Ship to address2 field
- ShipToAddress3? string - Ship to address3 field
- BillToAddress2? string - Bill to address2 field
- BillToAddress3? string - Bill to address3 field
- PlaceOfSupply? string - Place of supply field
- PurchasePlaceOfSupply? string - Purchase place of supply field
- DocEntry? Signed32 - Document entry field
- GoodsIssuePlaceBP? string - Goods issue place business partner field
- GoodsIssuePlaceCNPJ? string - Goods issue place CNPJ field
- GoodsIssuePlaceCPF? string - Goods issue place CPF field
- GoodsIssuePlaceStreet? string - Goods issue place street field
- GoodsIssuePlaceStreetNo? string - Goods issue place street number field
- GoodsIssuePlaceBuilding? string - Goods issue place building field
- GoodsIssuePlaceZip? string - Goods issue place zip field
- GoodsIssuePlaceBlock? string - Goods issue place block field
- GoodsIssuePlaceCity? string - Goods issue place city field
- GoodsIssuePlaceCounty? string - Goods issue place county field
- GoodsIssuePlaceState? string - Goods issue place state field
- GoodsIssuePlaceCountry? string - Goods issue place country field
- GoodsIssuePlacePhone? string - Goods issue place phone field
- GoodsIssuePlaceEMail? string - Goods issue place e mail field
- GoodsIssuePlaceDepartureDate? string - Goods issue place departure date field
- DeliveryPlaceBP? string - Delivery place business partner field
- DeliveryPlaceCNPJ? string - Delivery place CNPJ field
- DeliveryPlaceCPF? string - Delivery place CPF field
- DeliveryPlaceStreet? string - Delivery place street field
- DeliveryPlaceStreetNo? string - Delivery place street number field
- DeliveryPlaceBuilding? string - Delivery place building field
- DeliveryPlaceZip? string - Delivery place zip field
- DeliveryPlaceBlock? string - Delivery place block field
- DeliveryPlaceCity? string - Delivery place city field
- DeliveryPlaceCounty? string - Delivery place county field
- DeliveryPlaceState? string - Delivery place state field
- DeliveryPlaceCountry? string - Delivery place country field
- DeliveryPlacePhone? string - Delivery place phone field
- DeliveryPlaceEMail? string - Delivery place e mail field
- DeliveryPlaceDepartureDate? string - Delivery place departure date field
- ShipToStreetForReturn? string - Ship to street for return field
- ShipToStreetNoForReturn? string - Ship to street number for return field
- ShipToBlockForReturn? string - Ship to block for return field
- ShipToBuildingForReturn? string - Ship to building for return field
- ShipToCityForReturn? string - Ship to city for return field
- ShipToZipCodeForReturn? string - Ship to zip code for return field
- ShipToCountyForReturn? string - Ship to county for return field
- ShipToStateForReturn? string - Ship to state for return field
- ShipToCountryForReturn? string - Ship to country for return field
- ShipToAddressTypeForReturn? string - Ship to address type for return field
- ShipToGlobalLocationNumberForReturn? string - Ship to global location number for return field
- ShipToAddress2ForReturn? string - Ship to address2 for return field
- ShipToAddress3ForReturn? string - Ship to address3 for return field
sap.businessone.inventory: AlternateCatNum
The AlternateCatNum entity of the SAP Business One Service Layer
Fields
- ItemCode? string - Item code field
- CardCode? string - Card code field
- Substitute? string - Substitute field
- 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 - Description field
- 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 - Odata metadata field
- value? AlternateCatNum[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: AlternativeItem
The AlternativeItem complex type of the SAP Business One Service Layer
Fields
- matchFactor? decimal - Match factor field
- remarks? string - Remarks field
- alternativeItemCode? string - Alternative item code field
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 - Original item field
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 - Original item params field
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 - Original item params field
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 - Original item field
sap.businessone.inventory: AttributeGroup
The AttributeGroup entity of the SAP Business One Service Layer
Fields
- locked? BoYesNoEnum - Locked field
- attributeGroupCollection? AttributeGroupLine[] - Attribute group collection field
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.inventory: AttributeGroupLine
The AttributeGroupLine complex type of the SAP Business One Service Layer
Fields
- defaultValue? string - Default value field
- sortNumber? Signed32 - Sort number field
- attributeID? Signed32 - Attribute ID field
- attributeName? string - Attribute name field
- code? Signed32 - Code field
- fieldType? AttributeGroupFieldTypeEnum - Field type field
sap.businessone.inventory: AttributeGroupParams
The AttributeGroupParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.inventory: AttributeGroupsCollectionResponse
A paged collection of AttributeGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? AttributeGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: BarCode
The BarCode entity of the SAP Business One Service Layer
Fields
- freeText? string - Free text field
- item? Item - Item field
- uoMEntry? Signed32 - Uo m entry field
- unitOfMeasurement? UnitOfMeasurement - Unit of measurement field
- barcode? string - Barcode field
- itemNo? string - Item number field
- absEntry? Signed32 - Abs entry field
sap.businessone.inventory: BarCodeParams
The BarCodeParams complex type of the SAP Business One Service Layer
Fields
- uoMEntry? Signed32 - Uo m entry field
- barcode? string - Barcode field
- itemNo? string - Item number field
- absEntry? Signed32 - Abs entry field
sap.businessone.inventory: BarCodesCollectionResponse
A paged collection of BarCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BarCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: BatchNumber
The BatchNumber complex type of the SAP Business One Service Layer
Fields
- BatchNumber? string - Batch number field
- ManufacturerSerialNumber? string - Manufacturer serial number field
- InternalSerialNumber? string - Internal serial number field
- ExpiryDate? string - Expiry date field
- ManufacturingDate? string - Manufacturing date field
- AddmisionDate? string - Addmision date field
- Location? string - Location field
- Notes? string - Notes field
- Quantity? decimal - Quantity field
- BaseLineNumber? Signed32 - Base line number field
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- ItemCode? string - Item code field
- SystemSerialNumber? Signed32 - System serial number field
sap.businessone.inventory: BatchNumberDetail
The BatchNumberDetail entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- Status? BatchDetailServiceStatusEnum - OData EnumType 'BatchDetailServiceStatusEnum'. Serialised by the Service Layer as the member name
- Batch? string - Batch field
- BatchAttribute1? string - Batch attribute1 field
- BatchAttribute2? string - Batch attribute2 field
- AdmissionDate? string - Admission date field
- ManufacturingDate? string - Manufacturing date field
- ExpirationDate? string - Expiration date field
- Details? string - Details field
- SystemNumber? Signed32 - System number field
- 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 - Odata metadata field
- value? BatchNumberDetail[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: BinLocation
The BinLocation entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 - Abs entry field
- Warehouse? string - Warehouse field
- Sublevel1? string - Sublevel1 field
- Sublevel2? string - Sublevel2 field
- Sublevel3? string - Sublevel3 field
- Sublevel4? string - Sublevel4 field
- BinCode? string - Bin code field
- Inactive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Description? string - Description field
- AlternativeSortCode? string - Alternative sort code field
- BarCode? string - Bar code field
- Attribute1? string - Attribute1 field
- Attribute2? string - Attribute2 field
- Attribute3? string - Attribute3 field
- Attribute4? string - Attribute4 field
- Attribute5? string - Attribute5 field
- Attribute6? string - Attribute6 field
- Attribute7? string - Attribute7 field
- Attribute8? string - Attribute8 field
- Attribute9? string - Attribute9 field
- Attribute10? string - Attribute10 field
- RestrictedItemType? BinRestrictItemEnum - OData EnumType 'BinRestrictItemEnum'. Serialised by the Service Layer as the member name
- SpecificItem? string - Specific item field
- SpecificItemGroup? Signed32 - Specific item group field
- 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 - Restriction reason field
- DateRestrictionChanged? string - Date restriction changed field
- MinimumQty? decimal - Minimum quantity field
- MaximumQty? decimal - Maximum quantity field
- 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 - Maximum weight field
- MaximumWeight1? decimal - Maximum weight1 field
- MaximumWeightUnit? Signed32 - Maximum weight unit field
- MaximumWeightUnit1? Signed32 - Maximum weight unit1 field
- RestrictedUoMType? BinRestrictUoMEnum - OData EnumType 'BinRestrictUoMEnum'. Serialised by the Service Layer as the member name
- SpecificUoM? Signed32 - Specific uo m field
- SpecificUoMGroup? Signed32 - Specific uo m group field
- Warehouses? Warehouse[] - Warehouses field
- 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 - Bin location field field
- attribute? Signed32 - Attribute field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.inventory: BinLocationAttributeParams
The BinLocationAttributeParams complex type of the SAP Business One Service Layer
Fields
- attribute? Signed32 - Attribute field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.inventory: BinLocationAttributesCollectionResponse
A paged collection of BinLocationAttributes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BinLocationAttribute[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: BinLocationField
The BinLocationField entity of the SAP Business One Service Layer
Fields
- fieldNumber? Signed32 - Field number field
- activated? BoYesNoEnum - Activated field
- binLocationAttributes? BinLocationAttribute[] - Bin location attributes field
- warehouseSublevelCodes? WarehouseSublevelCode[] - Warehouse sublevel codes field
- defaultFieldName? string - Default field name field
- absEntry? Signed32 - Abs entry field
- fieldType? BinLocationFieldTypeEnum - Field type field
- name? string - Name field
sap.businessone.inventory: BinLocationFieldParams
The BinLocationFieldParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
sap.businessone.inventory: BinLocationFieldsCollectionResponse
A paged collection of BinLocationFields entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BinLocationField[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: BinLocationParams
The BinLocationParams complex type of the SAP Business One Service Layer
Fields
- binCode? string - Bin code field
- absEntry? Signed32 - Abs entry field
sap.businessone.inventory: BinLocationsCollectionResponse
A paged collection of BinLocations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? BinLocation[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: CCDNumber
The CCDNumber complex type of the SAP Business One Service Layer
Fields
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- CCDNumber? string - CCD number field
- Quantity? decimal - Quantity field
- CountryOfOrigin? string - Country of origin field
- SubLineNumber? Signed32 - Sub line number field
- DocumentEntry? Signed32 - Document entry field
- BaseLineNumber? Signed32 - Base line number field
- ChildNumber? Signed32 - Child number field
sap.businessone.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 - Code field
- Name? string - Name field
- Number? string - Number field
- Customs? decimal - Customs field
- Purchase? decimal - Purchase field
- Other? decimal - Other field
- Total? decimal - Total field
- Locked? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CustomsAllocationAccount? string - Customs allocation account field
- CustomsExpenseAccount? string - Customs expense account field
- PortAddress? string - Port address field
- PortState? string - Port state field
- Items? Item[] - Items field
sap.businessone.inventory: CustomsGroupsCollectionResponse
A paged collection of CustomsGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CustomsGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: CycleCountDetermination
The CycleCountDetermination entity of the SAP Business One Service Layer
Fields
- cycleBy? CycleCountDeterminationCycleByEnum - Cycle by field
- warehouseCode? string - Warehouse code field
- cycleCountDeterminationSetupCollection? CycleCountDeterminationSetup[] - Cycle count determination setup collection field
sap.businessone.inventory: CycleCountDeterminationParams
The CycleCountDeterminationParams complex type of the SAP Business One Service Layer
Fields
- cycleBy? Signed32 - Cycle by field
- warehouseCode? string - Warehouse code field
sap.businessone.inventory: CycleCountDeterminationsCollectionResponse
A paged collection of CycleCountDeterminations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? CycleCountDetermination[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: CycleCountDeterminationSetup
The CycleCountDeterminationSetup complex type of the SAP Business One Service Layer
Fields
- excludeItemsWithZeroQuantity? BoYesNoEnum - Exclude items with zero quantity field
- entry? Signed32 - Entry field
- cycleCode? Signed32 - Cycle code field
- alert? BoYesNoEnum - Alert field
- time? string - Time field
- nextCountingDate? string - Next counting date field
- warehouseCode? string - Warehouse code field
- destinationUser? Signed32 - Destination user field
- changeExistingItems? BoYesNoEnum - Change existing items field
sap.businessone.inventory: DiscountGroupLine
The DiscountGroupLine complex type of the SAP Business One Service Layer
Fields
- freeQuantity? decimal - Free quantity field
- objectType? DiscountGroupBaseObjectEnum - Object type field
- discount? decimal - Discount field
- maximumFreeQuantity? decimal - Maximum free quantity field
- discountType? DiscountGroupDiscountTypeEnum - Discount type field
- absEntry? Signed32 - Abs entry field
- objectCode? string - Object code field
- paidQuantity? decimal - Paid quantity field
sap.businessone.inventory: DocExpenseTaxJurisdiction
The DocExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
sap.businessone.inventory: DocFreightEBooksDetail
The DocFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
sap.businessone.inventory: DocLinePickList
The DocLinePickList complex type of the SAP Business One Service Layer
Fields
- pickListLineNum? Signed32 - Pick list line number field
- pickListBatchAndBinLineNum? Signed32 - Pick list batch and bin line number field
- pickListEntry? Signed32 - Pick list entry field
sap.businessone.inventory: Document
The Document entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- DocNum? Signed32 - Document number field
- DocType? BoDocumentTypes - OData EnumType 'BoDocumentTypes'. Serialised by the Service Layer as the member name
- HandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Printed? PrintStatusEnum - OData EnumType 'PrintStatusEnum'. Serialised by the Service Layer as the member name
- DocDate? string - Document date field
- DocDueDate? string - Document due date field
- CardCode? string - Card code field
- CardName? string - Card name field
- Address? string - Address field
- NumAtCard? string - Number at card field
- DocTotal? decimal - Document total field
- AttachmentEntry? Signed32 - Attachment entry field
- DocCurrency? string - Document currency field
- DocRate? decimal - Document rate field
- Reference1? string - Reference1 field
- Reference2? string - Reference2 field
- Comments? string - Comments field
- JournalMemo? string - Journal memo field
- PaymentGroupCode? Signed32 - Payment group code field
- DocTime? string - Document time field
- SalesPersonCode? Signed32 - Sales person code field
- TransportationCode? Signed32 - Transportation code field
- Confirmed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ImportFileNum? Signed32 - Import file number field
- SummeryType? BoDocSummaryTypes - OData EnumType 'BoDocSummaryTypes'. Serialised by the Service Layer as the member name
- ContactPersonCode? Signed32 - Contact person code field
- ShowSCN? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Series? Signed32 - Series field
- TaxDate? string - Tax date field
- PartialSupply? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocObjectCode? BoObjectTypes - OData EnumType 'BoObjectTypes'. Serialised by the Service Layer as the member name
- ShipToCode? string - Ship to code field
- Indicator? string - Indicator field
- FederalTaxID? string - Federal tax ID field
- DiscountPercent? decimal - Discount percent field
- PaymentReference? string - Payment reference field
- CreationDate? string - Creation date field
- UpdateDate? string - Update date field
- FinancialPeriod? Signed32 - Financial period field
- UserSign? Signed32 - User sign field
- TransNum? Signed32 - Trans number field
- VatSum? decimal - VAT sum field
- VatSumSys? decimal - VAT sum sys field
- VatSumFc? decimal - VAT sum foreign currency field
- NetProcedure? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocTotalFc? decimal - Document total foreign currency field
- DocTotalSys? decimal - Document total sys field
- Form1099? Signed32 - Form1099 field
- Box1099? string - Box1099 field
- RevisionPo? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RequriedDate? string - Requried date field
- CancelDate? string - Cancel date field
- BlockDunning? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Submitted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Segment? Signed32 - Segment field
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Pick? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentMethod? string - Payment method field
- PaymentBlock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaymentBlockEntry? Signed32 - Payment block entry field
- CentralBankIndicator? string - Central bank indicator field
- MaximumCashDiscount? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Reserve? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Project? string - Project field
- ExemptionValidityDateFrom? string - Exemption validity date from field
- ExemptionValidityDateTo? string - Exemption validity date to field
- WareHouseUpdateType? BoDocWhsUpdateTypes - OData EnumType 'BoDocWhsUpdateTypes'. Serialised by the Service Layer as the member name
- Rounding? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExternalCorrectedDocNum? string - External corrected document number field
- InternalCorrectedDocNum? Signed32 - Internal corrected document number field
- NextCorrectingDocument? Signed32 - Next correcting document field
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxExemptionLetterNum? string - Tax exemption letter number field
- WTApplied? decimal - Withholding tax applied field
- WTAppliedFC? decimal - Withholding tax applied foreign currency field
- BillOfExchangeReserved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgentCode? string - Agent code field
- WTAppliedSC? decimal - Withholding tax applied system currency field
- TotalEqualizationTax? decimal - Total equalization tax field
- TotalEqualizationTaxFC? decimal - Total equalization tax foreign currency field
- TotalEqualizationTaxSC? decimal - Total equalization tax system currency field
- NumberOfInstallments? Signed32 - Number of installments field
- ApplyTaxOnFirstInstallment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxOnInstallments? BoTaxOnInstallmentsTypeEnum - OData EnumType 'BoTaxOnInstallmentsTypeEnum'. Serialised by the Service Layer as the member name
- WTNonSubjectAmount? decimal - Withholding tax non subject amount field
- WTNonSubjectAmountSC? decimal - Withholding tax non subject amount system currency field
- WTNonSubjectAmountFC? decimal - Withholding tax non subject amount foreign currency field
- WTExemptedAmount? decimal - Withholding tax exempted amount field
- WTExemptedAmountSC? decimal - Withholding tax exempted amount system currency field
- WTExemptedAmountFC? decimal - Withholding tax exempted amount foreign currency field
- BaseAmount? decimal - Base amount field
- BaseAmountSC? decimal - Base amount system currency field
- BaseAmountFC? decimal - Base amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WTAmountSC? decimal - Withholding tax amount system currency field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- VatDate? string - VAT date field
- DocumentsOwner? Signed32 - Documents owner field
- FolioPrefixString? string - Folio prefix string field
- FolioNumber? Signed32 - Folio number field
- DocumentSubType? BoDocumentSubType - OData EnumType 'BoDocumentSubType'. Serialised by the Service Layer as the member name
- BPChannelCode? string - Business partner channel code field
- BPChannelContact? Signed32 - Business partner channel contact field
- Address2? string - Address2 field
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PeriodIndicator? string - Period indicator field
- PayToCode? string - Pay to code field
- ManualNumber? string - Manual number field
- UseShpdGoodsAct? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IsPayToBank? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PayToBankCountry? string - Pay to bank country field
- PayToBankCode? string - Pay to bank code field
- PayToBankAccountNo? string - Pay to bank account number field
- PayToBankBranch? string - Pay to bank branch field
- BPL_IDAssignedToInvoice? Signed32 - BPL ID assigned to invoice field
- DownPayment? decimal - Down payment field
- ReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LanguageCode? Signed32 - Language code field
- TrackingNumber? string - Tracking number field
- PickRemark? string - Pick remark field
- ClosingDate? string - Closing date field
- SequenceCode? Signed32 - Sequence code field
- SequenceSerial? Signed32 - Sequence serial field
- SeriesString? string - Series string field
- SubSeriesString? string - Sub series string field
- SequenceModel? string - Sequence model field
- UseCorrectionVATGroup? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TotalDiscount? decimal - Total discount field
- DownPaymentAmount? decimal - Down payment amount field
- DownPaymentPercentage? decimal - Down payment percentage field
- DownPaymentType? DownPaymentTypeEnum - OData EnumType 'DownPaymentTypeEnum'. Serialised by the Service Layer as the member name
- DownPaymentAmountSC? decimal - Down payment amount system currency field
- DownPaymentAmountFC? decimal - Down payment amount foreign currency field
- VatPercent? decimal - VAT percent field
- ServiceGrossProfitPercent? decimal - Service gross profit percent field
- OpeningRemarks? string - Opening remarks field
- ClosingRemarks? string - Closing remarks field
- RoundingDiffAmount? decimal - Rounding diff amount field
- RoundingDiffAmountFC? decimal - Rounding diff amount foreign currency field
- RoundingDiffAmountSC? decimal - Rounding diff amount system currency field
- Cancelled? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- CertificationNumber? string - Certification number field
- PrivateKeyVersion? Signed32 - Private key version field
- ControlAccount? string - Control account field
- InsuranceOperation347? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArchiveNonremovableSalesQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GTSChecker? Signed32 - GTS checker field
- GTSPayee? Signed32 - GTS payee field
- ExtraMonth? Signed32 - Extra month field
- ExtraDays? Signed32 - Extra days field
- CashDiscountDateOffset? Signed32 - Cash discount date offset field
- StartFrom? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- NTSApproved? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ETaxWebSite? Signed32 - E tax web site field
- ETaxNumber? string - E tax number field
- NTSApprovedNumber? string - NTS approved number field
- EDocGenerationType? EDocGenerationTypeEnum - OData EnumType 'EDocGenerationTypeEnum'. Serialised by the Service Layer as the member name
- EDocSeries? Signed32 - E document series field
- EDocNum? string - E document number field
- EDocExportFormat? Signed32 - E document export format field
- EDocStatus? EDocStatusEnum - OData EnumType 'EDocStatusEnum'. Serialised by the Service Layer as the member name
- EDocErrorCode? string - E document error code field
- EDocErrorMessage? string - E document error message field
- DownPaymentStatus? BoSoStatus - OData EnumType 'BoSoStatus'. Serialised by the Service Layer as the member name
- GroupSeries? Signed32 - Group series field
- GroupNumber? Signed32 - Group number field
- GroupHandWritten? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenOriginalDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReopenManuallyClosedOrCanceledDocument? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateOnlineQuotation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POSEquipmentNumber? string - POS equipment number field
- POSManufacturerSerialNumber? string - POS manufacturer serial number field
- POSCashierNumber? Signed32 - POS cashier number field
- ApplyCurrentVATRatesForDownPaymentsToDraw? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ClosingOption? ClosingOptionEnum - OData EnumType 'ClosingOptionEnum'. Serialised by the Service Layer as the member name
- SpecifiedClosingDate? string - Specified closing date field
- OpenForLandedCosts? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AuthorizationStatus? DocumentAuthorizationStatusEnum - OData EnumType 'DocumentAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
- TotalDiscountFC? decimal - Total discount foreign currency field
- TotalDiscountSC? decimal - Total discount system currency field
- RelevantToGTS? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- AnnualInvoiceDeclarationReference? Signed32 - Annual invoice declaration reference field
- Supplier? string - Supplier field
- Releaser? Signed32 - Releaser field
- Receiver? Signed32 - Receiver field
- BlanketAgreementNumber? Signed32 - Blanket agreement number field
- IsAlteration? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CancelStatus? CancelStatusEnum - OData EnumType 'CancelStatusEnum'. Serialised by the Service Layer as the member name
- DraftKey? Signed32 - Draft key field
- AssetValueDate? string - Asset value date field
- Requester? string - Requester field
- RequesterName? string - Requester name field
- RequesterBranch? Signed32 - Requester branch field
- RequesterDepartment? Signed32 - Requester department field
- RequesterEmail? string - Requester email field
- SendNotification? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReqType? Signed32 - Req type field
- ReqCode? string - Req code field
- InvoicePayment? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocumentDelivery? DocumentDeliveryTypeEnum - OData EnumType 'DocumentDeliveryTypeEnum'. Serialised by the Service Layer as the member name
- AuthorizationCode? string - Authorization code field
- StartDeliveryDate? string - Start delivery date field
- StartDeliveryTime? string - Start delivery time field
- EndDeliveryDate? string - End delivery date field
- EndDeliveryTime? string - End delivery time field
- VehiclePlate? string - Vehicle plate field
- ATDocumentType? string - AT document type field
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string - Elec comm message field
- ReuseDocumentNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReuseNotaFiscalNum? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PrintSEPADirect? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FiscalDocNum? string - Fiscal document number field
- POSDailySummaryNo? Signed32 - POS daily summary number field
- POSReceiptNo? Signed32 - POS receipt number field
- PointOfIssueCode? string - Point of issue code field
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 - Folio number from field
- FolioNumberTo? Signed32 - Folio number to field
- InterimType? BoInterimDocTypes - OData EnumType 'BoInterimDocTypes'. Serialised by the Service Layer as the member name
- RelatedType? Signed32 - Related type field
- RelatedEntry? Signed32 - Related entry field
- SAPPassport? string - SAP passport field
- DocumentTaxID? string - Document tax ID field
- DateOfReportingControlStatementVAT? string - Date of reporting control statement VAT field
- ReportingSectionControlStatementVAT? string - Reporting section control statement VAT field
- ExcludeFromTaxReportControlStatementVAT? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- POS_CashRegister? Signed32 - POS cash register field
- UpdateTime? string - Update time field
- CreateQRCodeFrom? string - Create QR code from field
- PriceMode? PriceModeDocumentEnum - OData EnumType 'PriceModeDocumentEnum'. Serialised by the Service Layer as the member name
- PriceListNum? Signed32 - Price list number field
- DownPaymentTrasactionID? string - Down payment trasaction ID field
- OriginalRefNo? string - Original reference number field
- OriginalRefDate? string - Original reference date field
- Revision? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GSTTransactionType? GSTTransactionTypeEnum - OData EnumType 'GSTTransactionTypeEnum'. Serialised by the Service Layer as the member name
- OriginalCreditOrDebitNo? string - Original credit or debit number field
- OriginalCreditOrDebitDate? string - Original credit or debit date field
- ECommerceOperator? string - E commerce operator field
- ECommerceGSTIN? string - E commerce GSTIN field
- TaxInvoiceNo? string - Tax invoice number field
- TaxInvoiceDate? string - Tax invoice date field
- ShipFrom? string - Ship from field
- CommissionTrade? CommissionTradeTypeEnum - OData EnumType 'CommissionTradeTypeEnum'. Serialised by the Service Layer as the member name
- CommissionTradeReturn? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UseBillToAddrToDetermineTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IssuingReason? Signed32 - Issuing reason field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- EDocType? EDocTypeEnum - OData EnumType 'EDocTypeEnum'. Serialised by the Service Layer as the member name
- FCEAsPaymentMeans? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- FatherCard? string - Father card field
- FatherType? BoFatherCardTypes - OData EnumType 'BoFatherCardTypes'. Serialised by the Service Layer as the member name
- ShipState? string - Ship state field
- ShipPlace? string - Ship place field
- CustOffice? string - Customer office field
- FCI? string - FCI field
- AddLegIn? string - Add leg in field
- LegTextF? Signed32 - Leg text f field
- DANFELgTxt? string - DANFE lg txt field
- DataVersion? Signed32 - Data version field
- LastPageFolioNumber? Signed32 - Last page folio number field
- InventoryStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PlasticPackagingTaxRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NotRelevantForMonthlyInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EndAt? BoPayTermDueTypes - OData EnumType 'BoPayTermDueTypes'. Serialised by the Service Layer as the member name
- ShipToCodeForReturn? string - Ship to code for return field
- AddressForReturn? string - Address for return field
- Document_ApprovalRequests? DocumentApprovalRequest[] - Document approval requests field
- DocumentLines? DocumentLine[] - Document lines field
- EWayBillDetails? EWayBillDetails - The
EWayBillDetailscomplex type of the SAP Business One Service Layer
- EDeliveryInfo? EDeliveryInfo - The
EDeliveryInfocomplex type of the SAP Business One Service Layer
- ElectronicProtocols? ElectronicProtocol[] - Electronic protocols field
- DocumentAdditionalExpenses? DocumentAdditionalExpense[] - Document additional expenses field
- DocumentDistributedExpenses? DocumentDistributedExpense[] - Document distributed expenses field
- WithholdingTaxDataWTXCollection? WithholdingTaxDataWTX[] - Withholding tax data WTX collection field
- WithholdingTaxDataCollection? WithholdingTaxData[] - Withholding tax data collection field
- DocumentPackages? DocumentPackage[] - Document packages field
- DocumentSpecialLines? DocumentSpecialLine[] - Document special lines field
- DocumentInstallments? DocumentInstallment[] - Document installments field
- DownPaymentsToDraw? DownPaymentToDraw[] - Down payments to draw field
- TaxExtension? TaxExtension - The
TaxExtensioncomplex type of the SAP Business One Service Layer
- AddressExtension? AddressExtension - The
AddressExtensioncomplex type of the SAP Business One Service Layer
- DocumentReferences? DocumentReference[] - Document references field
- DocumentAdditionalIntrastatExpenses? DocumentAdditionalIntrastatExpense[] - Document additional intrastat expenses field
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseType? Signed32 - Base type field
- BaseEntry? Signed32 - Base entry field
- IndFinal? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AllocationNumberIL? string - Allocation number IL field
- DigitalPayToAddress? string - Digital pay to address field
- DigitalPayments? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SirenNumber? string - Siren number field
- SiretNumber? string - Siret number field
- RoutingCode? string - Routing code field
- Suffix? string - Suffix field
- SOIWizardId? Signed32 - SOI wizard ID field
- 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 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- Remarks? string - Remarks field
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string - VAT group field
- TaxPercent? decimal - Tax percent field
- TaxSum? decimal - Tax sum field
- TaxSumFC? decimal - Tax sum foreign currency field
- TaxSumSys? decimal - Tax sum sys field
- DeductibleTaxSum? decimal - Deductible tax sum field
- DeductibleTaxSumFC? decimal - Deductible tax sum foreign currency field
- DeductibleTaxSumSys? decimal - Deductible tax sum sys field
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string - Tax code field
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal - Tax paid field
- TaxPaidFC? decimal - Tax paid foreign currency field
- TaxPaidSys? decimal - Tax paid sys field
- EqualizationTaxPercent? decimal - Equalization tax percent field
- EqualizationTaxSum? decimal - Equalization tax sum field
- EqualizationTaxFC? decimal - Equalization tax foreign currency field
- EqualizationTaxSys? decimal - Equalization tax sys field
- TaxTotalSum? decimal - Tax total sum field
- TaxTotalSumFC? decimal - Tax total sum foreign currency field
- TaxTotalSumSys? decimal - Tax total sum sys field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- LineNum? Signed32 - Line number field
- LastPurchasePrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- Stock? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetType? Signed32 - Target type field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DistributionRule? string - Distribution rule field
- Project? string - Project field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- LineGross? decimal - Line gross field
- LineGrossSys? decimal - Line gross sys field
- LineGrossFC? decimal - Line gross foreign currency field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocExpenseTaxJurisdictions? DocExpenseTaxJurisdiction[] - Document expense tax jurisdictions field
- DocFreightEBooksDetails? DocFreightEBooksDetail[] - Document freight e books details field
sap.businessone.inventory: DocumentAdditionalIntrastatExpense
The DocumentAdditionalIntrastatExpense complex type of the SAP Business One Service Layer
Fields
- ExpenseCode? Signed32 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- DistributionMethod? BoAdEpnsDistribMethods - OData EnumType 'BoAdEpnsDistribMethods'. Serialised by the Service Layer as the member name
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- LineNum? Signed32 - Line number field
sap.businessone.inventory: DocumentApprovalRequest
The Document_ApprovalRequest complex type of the SAP Business One Service Layer
Fields
- activeForUpdate? BoYesNoEnum - Active for update field
- approvalTemplatesID? Signed32 - Approval templates ID field
- remarks? string - Remarks field
- approvalTemplatesName? string - Approval templates name field
sap.businessone.inventory: DocumentCloseParams
The DocumentCloseParams complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
- specifiedClosingDate? string - Specified closing date field
- closingOption? ClosingOptionEnum - Closing option field
sap.businessone.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 - Due date field
- Percentage? decimal - Percentage field
- Total? decimal - Total field
- LastDunningDate? string - Last dunning date field
- DunningLevel? Signed32 - Dunning level field
- TotalFC? decimal - Total foreign currency field
- InstallmentId? Signed32 - Installment ID field
- PaymentOrdered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
sap.businessone.inventory: DocumentLine
The DocumentLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 - Line number field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- Quantity? decimal - Quantity field
- ShipDate? string - Ship date field
- Price? decimal - Price field
- PriceAfterVAT? decimal - Price after VAT field
- Currency? string - Currency field
- Rate? decimal - Rate field
- DiscountPercent? decimal - Discount percent field
- VendorNum? string - Vendor number field
- SerialNum? string - Serial number field
- WarehouseCode? string - Warehouse code field
- SalesPersonCode? Signed32 - Sales person code field
- CommisionPercent? decimal - Commision percent field
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- AccountCode? string - Account code field
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SupplierCatNum? string - Supplier cat number field
- CostingCode? string - Costing code field
- ProjectCode? string - Project code field
- BarCode? string - Bar code field
- VatGroup? string - VAT group field
- Height1? decimal - Height1 field
- Hight1Unit? Signed32 - Hight1 unit field
- Height2? decimal - Height2 field
- Height2Unit? Signed32 - Height2 unit field
- Lengh1? decimal - Lengh1 field
- Lengh1Unit? Signed32 - Lengh1 unit field
- Lengh2? decimal - Lengh2 field
- Lengh2Unit? Signed32 - Lengh2 unit field
- Weight1? decimal - Weight1 field
- Weight1Unit? Signed32 - Weight1 unit field
- Weight2? decimal - Weight2 field
- Weight2Unit? Signed32 - Weight2 unit field
- Factor1? decimal - Factor1 field
- Factor2? decimal - Factor2 field
- Factor3? decimal - Factor3 field
- Factor4? decimal - Factor4 field
- BaseType? Signed32 - Base type field
- BaseEntry? Signed32 - Base entry field
- BaseLine? Signed32 - Base line field
- Volume? decimal - Volume field
- VolumeUnit? Signed32 - Volume unit field
- Width1? decimal - Width1 field
- Width1Unit? Signed32 - Width1 unit field
- Width2? decimal - Width2 field
- Width2Unit? Signed32 - Width2 unit field
- Address? string - Address field
- TaxCode? string - Tax code field
- TaxType? BoTaxTypes - OData EnumType 'BoTaxTypes'. Serialised by the Service Layer as the member name
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PickQuantity? decimal - Pick quantity field
- PickListIdNumber? Signed32 - Pick list ID number field
- OriginalItem? string - Original item field
- BackOrder? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeText? string - Free text field
- ShippingMethod? Signed32 - Shipping method field
- POTargetNum? Signed32 - Purchase order target number field
- POTargetEntry? string - Purchase order target entry field
- POTargetRowNum? Signed32 - Purchase order target row number field
- CorrectionInvoiceItem? BoCorInvItemStatus - OData EnumType 'BoCorInvItemStatus'. Serialised by the Service Layer as the member name
- CorrInvAmountToStock? decimal - Corr inv amount to stock field
- CorrInvAmountToDiffAcct? decimal - Corr inv amount to diff account field
- AppliedTax? decimal - Applied tax field
- AppliedTaxFC? decimal - Applied tax foreign currency field
- AppliedTaxSC? decimal - Applied tax system currency field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DeferredTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EqualizationTaxPercent? decimal - Equalization tax percent field
- TotalEqualizationTax? decimal - Total equalization tax field
- TotalEqualizationTaxFC? decimal - Total equalization tax foreign currency field
- TotalEqualizationTaxSC? decimal - Total equalization tax system currency field
- NetTaxAmount? decimal - Net tax amount field
- NetTaxAmountFC? decimal - Net tax amount foreign currency field
- NetTaxAmountSC? decimal - Net tax amount system currency field
- MeasureUnit? string - Measure unit field
- UnitsOfMeasurment? decimal - Units of measurment field
- LineTotal? decimal - Line total field
- TaxPercentagePerRow? decimal - Tax percentage per row field
- TaxTotal? decimal - Tax total field
- ConsumerSalesForecast? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ExciseAmount? decimal - Excise amount field
- TaxPerUnit? decimal - Tax per unit field
- TotalInclTax? decimal - Total incl tax field
- CountryOrg? string - Country organization field
- SWW? string - SWW field
- TransactionType? BoTransactionTypeEnum - OData EnumType 'BoTransactionTypeEnum'. Serialised by the Service Layer as the member name
- DistributeExpense? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RowTotalFC? decimal - Row total foreign currency field
- RowTotalSC? decimal - Row total system currency field
- LastBuyInmPrice? decimal - Last buy inm price field
- LastBuyDistributeSumFc? decimal - Last buy distribute sum foreign currency field
- LastBuyDistributeSumSc? decimal - Last buy distribute sum system currency field
- LastBuyDistributeSum? decimal - Last buy distribute sum field
- StockDistributesumForeign? decimal - Stock distributesum foreign field
- StockDistributesumSystem? decimal - Stock distributesum system field
- StockDistributesum? decimal - Stock distributesum field
- StockInmPrice? decimal - Stock inm price field
- PickStatusEx? BoDocumentLinePickStatus - OData EnumType 'BoDocumentLinePickStatus'. Serialised by the Service Layer as the member name
- TaxBeforeDPM? decimal - Tax before DPM field
- TaxBeforeDPMFC? decimal - Tax before DPMFC field
- TaxBeforeDPMSC? decimal - Tax before DPMSC field
- CFOPCode? string - CFOP code field
- CSTCode? string - CST code field
- Usage? Signed32 - Usage field
- TaxOnly? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VisualOrder? Signed32 - Visual order field
- BaseOpenQuantity? decimal - Base open quantity field
- UnitPrice? decimal - Unit price field
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- PackageQuantity? decimal - Package quantity field
- Text? string - Text field
- LineType? BoDocLineType - OData EnumType 'BoDocLineType'. Serialised by the Service Layer as the member name
- COGSCostingCode? string - COGS costing code field
- COGSAccountCode? string - COGS account code field
- ChangeAssemlyBoMWarehouse? string - Change assemly bo m warehouse field
- GrossBuyPrice? decimal - Gross buy price field
- GrossBase? Signed32 - Gross base field
- GrossProfitTotalBasePrice? decimal - Gross profit total base price field
- CostingCode2? string - Costing code2 field
- CostingCode3? string - Costing code3 field
- CostingCode4? string - Costing code4 field
- CostingCode5? string - Costing code5 field
- ItemDetails? string - Item details field
- LocationCode? Signed32 - Location code field
- ActualDeliveryDate? string - Actual delivery date field
- RemainingOpenQuantity? decimal - Remaining open quantity field
- OpenAmount? decimal - Open amount field
- OpenAmountFC? decimal - Open amount foreign currency field
- OpenAmountSC? decimal - Open amount system currency field
- ExLineNo? string - Ex line number field
- RequiredDate? string - Required date field
- RequiredQuantity? decimal - Required quantity field
- COGSCostingCode2? string - COGS costing code2 field
- COGSCostingCode3? string - COGS costing code3 field
- COGSCostingCode4? string - COGS costing code4 field
- COGSCostingCode5? string - COGS costing code5 field
- CSTforIPI? string - CS tfor IPI field
- CSTforPIS? string - CS tfor PIS field
- CSTforCOFINS? string - CS tfor COFINS field
- CreditOriginCode? string - Credit origin code field
- WithoutInventoryMovement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- AgreementNo? Signed32 - Agreement number field
- AgreementRowNumber? Signed32 - Agreement row number field
- ActualBaseEntry? Signed32 - Actual base entry field
- ActualBaseLine? Signed32 - Actual base line field
- DocEntry? Signed32 - Document entry field
- Surpluses? decimal - Surpluses field
- DefectAndBreakup? decimal - Defect and breakup field
- Shortages? decimal - Shortages field
- ConsiderQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PartialRetirement? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RetirementQuantity? decimal - Retirement quantity field
- RetirementAPC? decimal - Retirement APC field
- ThirdParty? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PoNum? string - Purchase order number field
- PoItmNum? Signed32 - Purchase order itm number field
- ExpenseType? string - Expense type field
- ReceiptNumber? string - Receipt number field
- ExpenseOperationType? BoExpenseOperationTypeEnum - OData EnumType 'BoExpenseOperationTypeEnum'. Serialised by the Service Layer as the member name
- FederalTaxID? string - Federal tax ID field
- GrossProfit? decimal - Gross profit field
- GrossProfitFC? decimal - Gross profit foreign currency field
- GrossProfitSC? decimal - Gross profit system currency field
- PriceSource? DocumentPriceSourceEnum - OData EnumType 'DocumentPriceSourceEnum'. Serialised by the Service Layer as the member name
- EnableReturnCost? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ReturnCost? decimal - Return cost field
- LineVendor? string - Line vendor field
- ReturnAction? Signed32 - Return action field
- ReturnReason? Signed32 - Return reason field
- StgSeqNum? Signed32 - Stg seq number field
- StgEntry? Signed32 - Stg entry field
- StgDesc? string - Stg description field
- UoMEntry? Signed32 - Uo m entry field
- UoMCode? string - Uo m code field
- InventoryQuantity? decimal - Inventory quantity field
- RemainingOpenInventoryQuantity? decimal - Remaining open inventory quantity field
- ParentLineNum? Signed32 - Parent line number field
- Incoterms? Signed32 - Incoterms field
- TransportMode? Signed32 - Transport mode field
- NatureOfTransaction? Signed32 - Nature of transaction field
- DestinationCountryForImport? string - Destination country for import field
- DestinationRegionForImport? Signed32 - Destination region for import field
- OriginCountryForExport? string - Origin country for export field
- OriginRegionForExport? Signed32 - Origin region for export field
- ItemType? BoDocItemType - OData EnumType 'BoDocItemType'. Serialised by the Service Layer as the member name
- ChangeInventoryQuantityIndependently? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FreeOfChargeBP? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SACEntry? Signed32 - SAC entry field
- HSNEntry? Signed32 - HSN entry field
- GrossPrice? decimal - Gross price field
- GrossTotal? decimal - Gross total field
- GrossTotalFC? decimal - Gross total foreign currency field
- GrossTotalSC? decimal - Gross total system currency field
- NCMCode? Signed32 - NCM code field
- NVECode? string - NVE code field
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CtrSealQty? decimal - Ctr seal quantity field
- CNJPMan? string - CNJP man field
- CESTCode? Signed32 - CEST code field
- UFFiscalBenefitCode? string - UF fiscal benefit code field
- ReverseCharge? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ShipToCode? string - Ship to code field
- ShipToDescription? string - Ship to description field
- ShipFromCode? string - Ship from code field
- ShipFromDescription? string - Ship from description field
- OwnerCode? Signed32 - Owner code field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- StandardItemIdentification? Signed32 - Standard item identification field
- CommodityClassification? Signed32 - Commodity classification field
- WeightOfRecycledPlastic? decimal - Weight of recycled plastic field
- PlasticPackageExemptionReason? string - Plastic package exemption reason field
- LegalText? string - Legal text field
- Cig? Signed32 - Cig field
- Cup? Signed32 - Cup field
- OperatingProfit? decimal - Operating profit field
- OperatingProfitFC? decimal - Operating profit foreign currency field
- OperatingProfitSC? decimal - Operating profit system currency field
- NetIncome? decimal - Net income field
- NetIncomeFC? decimal - Net income foreign currency field
- NetIncomeSC? decimal - Net income system currency field
- CSTforIBS? string - CS tfor IBS field
- CSTforCBS? string - CS tfor CBS field
- CSTforIS? string - CS tfor IS field
- UnencumberedReason? Signed32 - Unencumbered reason field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ListNum? Signed32 - List number field
- RecognizedTaxCode? string - Recognized tax code field
- LineTaxJurisdictions? LineTaxJurisdiction[] - Line tax jurisdictions field
- GeneratedAssets? GeneratedAsset[] - Generated assets field
- EBooksDetails? EBooksDetail[] - E books details field
- DocLinePickLists? DocLinePickList[] - Document line pick lists field
- DocumentLineAdditionalExpenses? DocumentLineAdditionalExpense[] - Document line additional expenses field
- WithholdingTaxLines? WithholdingTaxLine[] - Withholding tax lines field
- SerialNumbers? SerialNumber[] - Serial numbers field
- BatchNumbers? BatchNumber[] - Batch numbers field
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] - Document lines bin allocations field
- ExportProcesses? ExportProcess[] - Export processes field
- CCDNumbers? CCDNumber[] - CCD numbers field
- ImportProcesses? ImportProcess[] - Import processes field
sap.businessone.inventory: DocumentLineAdditionalExpense
The DocumentLineAdditionalExpense complex type of the SAP Business One Service Layer
Fields
- LineNumber? Signed32 - Line number field
- GroupCode? Signed32 - Group code field
- ExpenseCode? Signed32 - Expense code field
- LineTotal? decimal - Line total field
- LineTotalFC? decimal - Line total foreign currency field
- LineTotalSys? decimal - Line total sys field
- PaidToDate? decimal - Paid to date field
- PaidToDateFC? decimal - Paid to date foreign currency field
- PaidToDateSys? decimal - Paid to date sys field
- TaxLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- VatGroup? string - VAT group field
- TaxPercent? decimal - Tax percent field
- TaxSum? decimal - Tax sum field
- TaxSumFC? decimal - Tax sum foreign currency field
- TaxSumSys? decimal - Tax sum sys field
- DeductibleTaxSum? decimal - Deductible tax sum field
- DeductibleTaxSumFC? decimal - Deductible tax sum foreign currency field
- DeductibleTaxSumSys? decimal - Deductible tax sum sys field
- AquisitionTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- TaxCode? string - Tax code field
- TaxType? BoAdEpnsTaxTypes - OData EnumType 'BoAdEpnsTaxTypes'. Serialised by the Service Layer as the member name
- TaxPaid? decimal - Tax paid field
- TaxPaidFC? decimal - Tax paid foreign currency field
- TaxPaidSys? decimal - Tax paid sys field
- EqualizationTaxPercent? decimal - Equalization tax percent field
- EqualizationTaxSum? decimal - Equalization tax sum field
- EqualizationTaxFC? decimal - Equalization tax foreign currency field
- EqualizationTaxSys? decimal - Equalization tax sys field
- TaxTotalSum? decimal - Tax total sum field
- TaxTotalSumFC? decimal - Tax total sum foreign currency field
- TaxTotalSumSys? decimal - Tax total sum sys field
- WTLiable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BaseGroup? Signed32 - Base group field
- DistributionRule? string - Distribution rule field
- Project? string - Project field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- CUSplit? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocFreight? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- LineExpenseTaxJurisdictions? LineExpenseTaxJurisdiction[] - Line expense tax jurisdictions field
- LineFreightEBooksDetails? LineFreightEBooksDetail[] - Line freight e books details field
sap.businessone.inventory: DocumentLinesBinAllocation
The DocumentLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 - Bin abs entry field
- Quantity? decimal - Quantity field
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 - Serial and batch numbers base line field
- BaseLineNumber? Signed32 - Base line number field
sap.businessone.inventory: DocumentPackage
The DocumentPackage complex type of the SAP Business One Service Layer
Fields
- Number? Signed32 - Number field
- Type? string - Type field
- TotalWeight? decimal - Total weight field
- Units? Signed32 - Units field
- DocumentPackageItems? DocumentPackageItem[] - Document package items field
sap.businessone.inventory: DocumentPackageItem
The DocumentPackageItem complex type of the SAP Business One Service Layer
Fields
- PackageNumber? Signed32 - Package number field
- ItemCode? string - Item code field
- Quantity? decimal - Quantity field
- UoMEntry? Signed32 - Uo m entry field
- MeasureUnit? string - Measure unit field
- UnitsOfMeasurement? decimal - Units of measurement field
sap.businessone.inventory: DocumentReference
The DocumentReference complex type of the SAP Business One Service Layer
Fields
- docEntry? Signed32 - Document entry field
- issueDate? string - Issue date field
- issuerCode? string - Issuer code field
- extDocNum? string - Ext document number field
- lineNumber? Signed32 - Line number field
- refDocEntr? Signed32 - Reference document entr field
- remark? string - Remark field
- refDocNum? Signed32 - Reference document number field
- issuerCNPJ? string - Issuer CNPJ field
- series? string - Series field
- number? Signed32 - Number field
- subSeries? string - Sub series field
- linkRefTyp? LinkReferenceTypeEnum - Link reference typ field
- refAmount? decimal - Reference amount field
- model? string - Model field
- accessKey? string - Access key field
- refAccKey? string - Reference acc key field
- refObjType? ReferencedObjectTypeEnum - Reference obj type field
sap.businessone.inventory: DocumentSpecialLine
The DocumentSpecialLine complex type of the SAP Business One Service Layer
Fields
- subtotalSC? decimal - Subtotal system currency field
- grossTotalFC? decimal - Gross total foreign currency field
- freight1? decimal - Freight1 field
- freight2? decimal - Freight2 field
- freight3SC? decimal - Freight3 system currency field
- taxAmountSC? decimal - Tax amount system currency field
- subtotal? decimal - Subtotal field
- freight3FC? decimal - Freight3 foreign currency field
- freight2FC? decimal - Freight2 foreign currency field
- orderNumber? Signed32 - Order number field
- afterLineNumber? Signed32 - After line number field
- freight1FC? decimal - Freight1 foreign currency field
- grossTotalSC? decimal - Gross total system currency field
- lineNum? Signed32 - Line number field
- lineText? string - Line text field
- taxAmount? decimal - Tax amount field
- taxAmountFC? decimal - Tax amount foreign currency field
- subtotalFC? decimal - Subtotal foreign currency field
- grossTotal? decimal - Gross total field
- freight2SC? decimal - Freight2 system currency field
- freight3? decimal - Freight3 field
- freight1SC? decimal - Freight1 system currency field
- lineType? BoDocSpecialLineType - Line type field
sap.businessone.inventory: DownPaymentToDraw
The DownPaymentToDraw complex type of the SAP Business One Service Layer
Fields
- taxFC? decimal - Tax foreign currency field
- grossAmountToDraw? decimal - Gross amount to draw field
- docEntry? Signed32 - Document entry field
- grossAmountToDrawSC? decimal - Gross amount to draw system currency field
- tax? decimal - Tax field
- amountToDrawSC? decimal - Amount to draw system currency field
- rowNum? Signed32 - Row number field
- name? string - Name field
- docInternalID? Signed32 - Document internal ID field
- isGrossLine? BoYesNoEnum - Is gross line field
- details? string - Details field
- postingDate? string - Posting date field
- amountToDraw? decimal - Amount to draw field
- taxSC? decimal - Tax system currency field
- downPaymentType? DownPaymentTypeEnum - Down payment type field
- docNumber? Signed32 - Document number field
- grossAmountToDrawFC? decimal - Gross amount to draw foreign currency field
- downPaymentsToDrawDetails? DownPaymentToDrawDetails[] - Down payments to draw details field
- dueDate? string - Due date field
- amountToDrawFC? decimal - Amount to draw foreign currency field
sap.businessone.inventory: DownPaymentToDrawDetails
The DownPaymentToDrawDetails complex type of the SAP Business One Service Layer
Fields
- seqNum? Signed32 - Seq number field
- vatGroupCode? string - VAT group code field
- taxFC? decimal - Tax foreign currency field
- grossAmountToDraw? decimal - Gross amount to draw field
- docEntry? Signed32 - Document entry field
- grossAmountToDrawSC? decimal - Gross amount to draw system currency field
- tax? decimal - Tax field
- taxAdjust? BoYesNoEnum - Tax adjust field
- rowNum? Signed32 - Row number field
- amountToDrawSC? decimal - Amount to draw system currency field
- docInternalID? Signed32 - Document internal ID field
- isGrossLine? BoYesNoEnum - Is gross line field
- amountToDraw? decimal - Amount to draw field
- taxSC? decimal - Tax system currency field
- grossAmountToDrawFC? decimal - Gross amount to draw foreign currency field
- lineType? LineTypeEnum - Line type field
- vatPercent? decimal - VAT percent field
- amountToDrawFC? decimal - Amount to draw foreign currency field
sap.businessone.inventory: EBooksDetail
The EBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
- RecType? Signed32 - Rec type field
- StampDutyCategory? Signed32 - Stamp duty category field
- OtherTaxesCategory? Signed32 - Other taxes category field
- FeesCategory? Signed32 - Fees category field
sap.businessone.inventory: EDeliveryInfo
The EDeliveryInfo complex type of the SAP Business One Service Layer
Fields
- vehicleNo? string - Vehicle number field
- docEntry? Signed32 - Document entry field
- moveType? Signed32 - Move type field
sap.businessone.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 - Mapping ID field
- TestingMode? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Confirmation? string - Confirmation field
- EDocType? Signed32 - E document type field
- CFDiCancellationReason? string - CF di cancellation reason field
- CFDiCancellationResponse? string - CF di cancellation response field
- RelatedDocuments? RelatedDocument[] - Related documents field
- EBooksRelevant? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- EBooksMARK? string - E books MARK field
- EBooksMARKofNegative? string - E books MAR kof negative field
- EBooksInvoiceType? string - E books invoice type field
- EBooksInvoiceTypeofNegative? string - E books invoice typeof negative field
- EBillingIRN? string - E billing IRN field
- EETPKP? string - EETPKP field
- EETBKP? string - EETBKP field
- SignatureInputMessage? string - Signature input message field
- SignatureDigest? string - Signature digest field
- FechaTimbrado? string - Fecha timbrado field
- SelloSAT? string - Sello SAT field
- PaymentMethod? string - Payment method field
- RfcProvCertif? string - Rfc prov certif field
- NoCertificadoSAT? string - Number certificado SAT field
- FPASequenceNumber? Signed32 - FPA sequence number field
- FPASendDateSDI? string - FPA send date SDI field
- FPAProgressivo? string - FPA progressivo field
- ProtocolDescription? string - Protocol description field
- CFDiExport? string - CF di export field
- EBillingAckNo? string - E billing ack number field
- EBillingAckDt? string - E billing ack dt field
- EBillingSignedInvoice? string - E billing signed invoice field
- EBillingSignedQRCode? string - E billing signed QR code field
- EBillingResponseStatus? string - E billing response status field
- CFDiCancellationReference? string - CF di cancellation reference field
- EBooksQRCodePath? string - E books QR code path field
- EBooksQRCodePathofNegative? string - E books QR code pathof negative field
- CartaPorteID? string - Carta porte ID field
- EBooksDispatchDate? string - E books dispatch date field
- EBooksDispatchTime? string - E books dispatch time field
sap.businessone.inventory: EnhancedDiscountGroup
The EnhancedDiscountGroup entity of the SAP Business One Service Layer
Fields
- 'type? DiscountGroupTypeEnum - Type field
- active? BoYesNoEnum - Active field
- discountRelations? DiscountGroupRelationsEnum - Discount relations field
- validTo? string - Valid to field
- validFrom? string - Valid from field
- discountGroupLineCollection? DiscountGroupLine[] - Discount group line collection field
- absEntry? Signed32 - Abs entry field
- objectCode? string - Object code field
sap.businessone.inventory: EnhancedDiscountGroupParams
The EnhancedDiscountGroupParams complex type of the SAP Business One Service Layer
Fields
- 'type? DiscountGroupTypeEnum - Type field
- absEntry? Signed32 - Abs entry field
- objectCode? string - Object code field
sap.businessone.inventory: EnhancedDiscountGroupsCollectionResponse
A paged collection of EnhancedDiscountGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? EnhancedDiscountGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: EWayBillDetails
The EWayBillDetails complex type of the SAP Business One Service Layer
Fields
- billFromName? string - Bill from name field
- shipToStateGSTCode? string - Ship to state GST code field
- transactionType? EWBTransactionTypeEnum - Transaction type field
- vehicleNo? string - Vehicle number field
- eWayBillExpirationDate? string - E way bill expiration date field
- dispatchFromAddress1? string - Dispatch from address1 field
- transporterName? string - Transporter name field
- billFromGSTIN? string - Bill from GSTIN field
- dispatchFromAddress2? string - Dispatch from address2 field
- dispatchFromZipCode? string - Dispatch from zip code field
- transporterID? string - Transporter ID field
- billToName? string - Bill to name field
- supplyType? EWBSupplyTypeEnum - Supply type field
- mainHSNEntry? Signed32 - Main HSN entry field
- shipToAddress2? string - Ship to address2 field
- shipToAddress1? string - Ship to address1 field
- distance? decimal - Distance field
- dispatchFromPlace? string - Dispatch from place field
- subType? Signed32 - Sub type field
- shipToZipCode? string - Ship to zip code field
- transportationMode? Signed32 - Transportation mode field
- transporterDocDate? string - Transporter document date field
- vehicleType? string - Vehicle type field
- transporterEntry? Signed32 - Transporter entry field
- docEntry? Signed32 - Document entry field
- documentType? string - Document type field
- billFromStateGSTCode? string - Bill from state GST code field
- dispatchFromStateGSTCode? string - Dispatch from state GST code field
- transporterDocNo? string - Transporter document number field
- shipToPlace? string - Ship to place field
- billToGSTIN? string - Bill to GSTIN field
- transporterLineNumber? Signed32 - Transporter line number field
- eWayBillNo? string - E way bill number field
- billToStateGSTCode? string - Bill to state GST code field
- eWayBillDate? string - E way bill date field
sap.businessone.inventory: ExportProcess
The ExportProcess complex type of the SAP Business One Service Layer
Fields
- ladingBillTypeCode? Signed32 - Lading bill type code field
- quantityOfExportedItems? decimal - Quantity of exported items field
- exportationNatureCode? Signed32 - Exportation nature code field
- ladingBillDate? string - Lading bill date field
- natureOfExport? string - Nature of export field
- ladingBillNumber? string - Lading bill number field
- lineNumber? Signed32 - Line number field
- exportationRegistryNumber? Signed32 - Exportation registry number field
- additionalItemSequentialNumber? Signed32 - Additional item sequential number field
- exportationDeclarationDate? string - Exportation declaration date field
- drawbackSuspensionRegime? string - Drawback suspension regime field
- merchandiseLeftCustomsDate? string - Merchandise left customs date field
- exportationDocumentTypeCode? Signed32 - Exportation document type code field
- exportationRegistryDate? string - Exportation registry date field
- exportationDeclarationNumber? Signed32 - Exportation declaration number field
sap.businessone.inventory: FIFOLayer
The FIFOLayer complex type of the SAP Business One Service Layer
Fields
- TransactionSequenceNum? Signed32 - Transaction sequence number field
- LayerID? Signed32 - Layer ID field
- Quantity? decimal - Quantity field
- Price? decimal - Price field
- LineTotal? decimal - Line total field
- BaseLine? Signed32 - Base line field
sap.businessone.inventory: GeneratedAsset
The GeneratedAsset complex type of the SAP Business One Service Layer
Fields
- status? GeneratedAssetStatusEnum - Status field
- amount? decimal - Amount field
- serialNumber? string - Serial number field
- remarks? string - Remarks field
- docEntry? Signed32 - Document entry field
- assetCode? string - Asset code field
- lineNumber? Signed32 - Line number field
- visualOrder? Signed32 - Visual order field
- amountSC? decimal - Amount system currency field
sap.businessone.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 - Date of registry DIDSIDA field
- importationDocumentNumber? string - Importation document number field
- customsClearanceDate? string - Customs clearance date field
- additionalItemSequentialNumber? Signed32 - Additional item sequential number field
- drawbackSuspensionRegime? string - Drawback suspension regime field
- typeOfImport? string - Type of import field
- additionalFreightToNavyAuthority? decimal - Additional freight to navy authority field
- drawbackRegimeConcessionAccountNumber? string - Drawback regime concession account number field
- importationDocumentTypeCode? string - Importation document type code field
- additionalNumber? string - Additional number field
- additionalItemDiscountValue? decimal - Additional item discount value field
- lineNumber? Signed32 - Line number field
sap.businessone.inventory: IndividualCounter
The IndividualCounter complex type of the SAP Business One Service Layer
Fields
- counterType? CounterTypeEnum - Counter type field
- counterName? string - Counter name field
- counterNumber? Signed32 - Counter number field
- counterVisualOrder? Signed32 - Counter visual order field
- documentEntry? Signed32 - Document entry field
- counterID? Signed32 - Counter ID field
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 - Odata metadata field
- value? AttributeGroupParams[] - Value field
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 - Odata metadata field
- value? BarCodeParams[] - Value field
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 - Odata metadata field
- value? MaterialRevaluationSNBParams[] - Value field
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 - Odata metadata field
- value? TrackingNoteParams[] - Value field
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 - Odata metadata field
- value? UnitOfMeasurementGroupParams[] - Value field
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 - Odata metadata field
- value? UnitOfMeasurementParams[] - Value field
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 - Odata metadata field
- value? WarehouseSublevelCodeParams[] - Value field
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 - Odata metadata field
- value? BinLocationAttributeParams[] - Value field
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 - Odata metadata field
- value? BinLocationFieldParams[] - Value field
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 - Odata metadata field
- value? BinLocationParams[] - Value field
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 - Odata metadata field
- value? CycleCountDeterminationParams[] - Value field
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 - Odata metadata field
- value? EnhancedDiscountGroupParams[] - Value field
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 - Odata metadata field
- value? InventoryCountingParams[] - Value field
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 - Odata metadata field
- value? InventoryOpeningBalanceParams[] - Value field
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 - Odata metadata field
- value? InventoryPostingParams[] - Value field
sap.businessone.inventory: InventoryCounting
The InventoryCounting entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- CountDate? string - Count date field
- CountTime? string - Count time field
- SingleCounterType? CounterTypeEnum - OData EnumType 'CounterTypeEnum'. Serialised by the Service Layer as the member name
- SingleCounterID? Signed32 - Single counter ID field
- DocumentStatus? CountingDocumentStatusEnum - OData EnumType 'CountingDocumentStatusEnum'. Serialised by the Service Layer as the member name
- Remarks? string - Remarks field
- Reference2? string - Reference2 field
- BranchID? Signed32 - Branch ID field
- DocObjectCodeEx? string - Document object code ex field
- FinancialPeriod? Signed32 - Financial period field
- PeriodIndicator? string - Period indicator field
- CountingType? CountingTypeEnum - OData EnumType 'CountingTypeEnum'. Serialised by the Service Layer as the member name
- AttachmentEntry? Signed32 - Attachment entry field
- YearEndDate? string - Year end date field
- TeamCounters? TeamCounter[] - Team counters field
- IndividualCounters? IndividualCounter[] - Individual counters field
- InventoryCountingLines? InventoryCountingLine[] - Inventory counting lines field
- InventoryCountingDocumentReferencesCollection? InventoryCountingDocumentReferences[] - Inventory counting document references collection field
sap.businessone.inventory: InventoryCountingBatchNumber
The InventoryCountingBatchNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 - Base line number field
- expiryDate? string - Expiry date field
- itemCode? string - Item code field
- addmisionDate? string - Addmision date field
- counterType? CounterTypeEnum - Counter type field
- multipleCounterRole? MultipleCounterRoleEnum - Multiple counter role field
- batchNumber? string - Batch number field
- manufactureDate? string - Manufacture date field
- quantity? decimal - Quantity field
- internalSerialNumber? string - Internal serial number field
- systemSerialNumber? Signed32 - System serial number field
- trackingNote? Signed32 - Tracking note field
- documentEntry? Signed32 - Document entry field
- counterID? Signed32 - Counter ID field
- trackingNoteLine? Signed32 - Tracking note line field
- notes? string - Notes field
- manufacturerSerialNumber? string - Manufacturer serial number field
- location? string - Location field
sap.businessone.inventory: InventoryCountingDocumentReferences
The InventoryCountingDocumentReferences complex type of the SAP Business One Service Layer
Fields
- referencedDocEntry? Signed32 - Referenced document entry field
- referencedObjectType? ReferencedObjectTypeEnum - Referenced object type field
- docEntry? Signed32 - Document entry field
- externalReferencedDocNumber? string - External referenced document number field
- issueDate? string - Issue date field
- referencedDocNumber? Signed32 - Referenced document number field
- lineNumber? Signed32 - Line number field
- remark? string - Remark field
sap.businessone.inventory: InventoryCountingDraft
The InventoryCountingDraft entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- CountDate? string - Count date field
- CountTime? string - Count time field
- SingleCounterType? CounterTypeEnum - OData EnumType 'CounterTypeEnum'. Serialised by the Service Layer as the member name
- SingleCounterID? Signed32 - Single counter ID field
- DocumentStatus? CountingDocumentStatusEnum - OData EnumType 'CountingDocumentStatusEnum'. Serialised by the Service Layer as the member name
- Remarks? string - Remarks field
- Reference2? string - Reference2 field
- BranchID? Signed32 - Branch ID field
- DocObjectCodeEx? string - Document object code ex field
- FinancialPeriod? Signed32 - Financial period field
- PeriodIndicator? string - Period indicator field
- CountingType? CountingTypeEnum - OData EnumType 'CountingTypeEnum'. Serialised by the Service Layer as the member name
- AttachmentEntry? Signed32 - Attachment entry field
- YearEndDate? string - Year end date field
sap.businessone.inventory: InventoryCountingDraftsCollectionResponse
A paged collection of InventoryCountingDrafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? InventoryCountingDraft[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: InventoryCountingLine
The InventoryCountingLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- Freeze? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WarehouseCode? string - Warehouse code field
- BinEntry? Signed32 - Bin entry field
- InWarehouseQuantity? decimal - In warehouse quantity field
- Counted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UoMCode? string - Uo m code field
- BarCode? string - Bar code field
- UoMCountedQuantity? decimal - Uo m counted quantity field
- ItemsPerUnit? decimal - Items per unit field
- CountedQuantity? decimal - Counted quantity field
- Variance? decimal - Variance field
- VariancePercentage? decimal - Variance percentage field
- VisualOrder? Signed32 - Visual order field
- TargetEntry? Signed32 - Target entry field
- TargetLine? Signed32 - Target line field
- TargetType? Signed32 - Target type field
- TargetReference? string - Target reference field
- ProjectCode? string - Project code field
- Manufacturer? Signed32 - Manufacturer field
- SupplierCatalogNo? string - Supplier catalog number field
- PreferredVendor? string - Preferred vendor field
- CostingCode? string - Costing code field
- CostingCode2? string - Costing code2 field
- CostingCode3? string - Costing code3 field
- CostingCode4? string - Costing code4 field
- CostingCode5? string - Costing code5 field
- Remarks? string - Remarks field
- 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 - Counter ID field
- MultipleCounterRole? MultipleCounterRoleEnum - OData EnumType 'MultipleCounterRoleEnum'. Serialised by the Service Layer as the member name
- WeightOfRecycledPlastic? decimal - Weight of recycled plastic field
- PlasticPackageExemptionReason? string - Plastic package exemption reason field
- InventoryCountingLineUoMs? InventoryCountingLineUoM[] - Inventory counting line uo ms field
- InventoryCountingSerialNumbers? InventoryCountingSerialNumber[] - Inventory counting serial numbers field
- InventoryCountingBatchNumbers? InventoryCountingBatchNumber[] - Inventory counting batch numbers field
sap.businessone.inventory: InventoryCountingLineUoM
The InventoryCountingLineUoM complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- ChildNumber? Signed32 - Child number field
- UoMCountedQuantity? decimal - Uo m counted quantity field
- ItemsPerUnit? decimal - Items per unit field
- CountedQuantity? decimal - Counted quantity field
- UoMCode? string - Uo m code field
- BarCode? string - Bar code field
- CounterType? CounterTypeEnum - OData EnumType 'CounterTypeEnum'. Serialised by the Service Layer as the member name
- CounterID? Signed32 - Counter ID field
- 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 - Document entry field
- documentNumber? Signed32 - Document number field
sap.businessone.inventory: InventoryCountingsCollectionResponse
A paged collection of InventoryCountings entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? InventoryCounting[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: InventoryCountingSerialNumber
The InventoryCountingSerialNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 - Base line number field
- warrantyStart? string - Warranty start field
- expiryDate? string - Expiry date field
- itemCode? string - Item code field
- counterType? CounterTypeEnum - Counter type field
- multipleCounterRole? MultipleCounterRoleEnum - Multiple counter role field
- receptionDate? string - Reception date field
- manufactureDate? string - Manufacture date field
- warrantyEnd? string - Warranty end field
- batchID? string - Batch ID field
- quantity? decimal - Quantity field
- internalSerialNumber? string - Internal serial number field
- systemSerialNumber? Signed32 - System serial number field
- trackingNote? Signed32 - Tracking note field
- documentEntry? Signed32 - Document entry field
- counterID? Signed32 - Counter ID field
- trackingNoteLine? Signed32 - Tracking note line field
- notes? string - Notes field
- manufacturerSerialNumber? string - Manufacturer serial number field
- location? string - Location field
sap.businessone.inventory: InventoryCycles
The InventoryCycles entity of the SAP Business One Service Layer
Fields
- CycleCode? Signed32 - Cycle code field
- CycleName? string - Cycle name field
- Frequency? BoFrequency - OData EnumType 'BoFrequency'. Serialised by the Service Layer as the member name
- Day? Signed32 - Day field
- Hour? string - Hour field
- NextCountingDate? string - Next counting date field
- Interval? Signed32 - Interval field
- 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 - Recurrence day in month field
- RecurrenceMonth? Signed32 - Recurrence month field
- 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 - Max occurrence field
- SeriesEndDate? string - Series end date field
- ItemGroups? ItemGroups[] - Item groups field
- Items? Item[] - Items field
sap.businessone.inventory: InventoryCyclesCollectionResponse
A paged collection of InventoryCycles entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? InventoryCycles[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: InventoryGenEntriesCollectionResponse
A paged collection of InventoryGenEntries entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: InventoryGenEntryService_ApproveAndAdd_body
Represents the request payload for the InventoryGenEntryService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.inventory: InventoryGenExitsCollectionResponse
A paged collection of InventoryGenExits entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Document[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: InventoryGenExitService_ApproveAndAdd_body
Represents the request payload for the InventoryGenExitService_ApproveAndAdd operation of the SAP Business One Service Layer
Fields
- document? Document - Document field
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 - Document field
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 - Document close params field
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 - Document field
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 - Document field
sap.businessone.inventory: InventoryOpeningBalance
The InventoryOpeningBalance entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- PostingDate? string - Posting date field
- DocumentDate? string - Document date field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- Reference2? string - Reference2 field
- Remarks? string - Remarks field
- BranchID? Signed32 - Branch ID field
- PriceSource? InventoryOpeningBalancePriceSourceEnum - OData EnumType 'InventoryOpeningBalancePriceSourceEnum'. Serialised by the Service Layer as the member name
- PriceList? Signed32 - Price list field
- JournalRemark? string - Journal remark field
- DocObjectCodeEx? string - Document object code ex field
- PeriodIndicator? string - Period indicator field
- FinancialPeriod? Signed32 - Financial period field
- AttachmentEntry? Signed32 - Attachment entry field
- InventoryOpeningBalanceLines? InventoryOpeningBalanceLine[] - Inventory opening balance lines field
sap.businessone.inventory: InventoryOpeningBalanceBatchNumber
The InventoryOpeningBalanceBatchNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 - Base line number field
- expiryDate? string - Expiry date field
- itemCode? string - Item code field
- addmisionDate? string - Addmision date field
- batchNumber? string - Batch number field
- manufactureDate? string - Manufacture date field
- quantity? decimal - Quantity field
- internalSerialNumber? string - Internal serial number field
- systemSerialNumber? Signed32 - System serial number field
- trackingNote? Signed32 - Tracking note field
- documentEntry? Signed32 - Document entry field
- trackingNoteLine? Signed32 - Tracking note line field
- notes? string - Notes field
- manufacturerSerialNumber? string - Manufacturer serial number field
- location? string - Location field
sap.businessone.inventory: InventoryOpeningBalanceCCDNumber
The InventoryOpeningBalanceCCDNumber complex type of the SAP Business One Service Layer
Fields
- cCDNumber? string - C code number field
- baseLineNumber? Signed32 - Base line number field
- subLineNumber? Signed32 - Sub line number field
- trackingNote? Signed32 - Tracking note field
- countryOfOrigin? string - Country of origin field
- documentEntry? Signed32 - Document entry field
- quantity? decimal - Quantity field
- childNumber? Signed32 - Child number field
- trackingNoteLine? Signed32 - Tracking note line field
sap.businessone.inventory: InventoryOpeningBalanceDraft
The InventoryOpeningBalanceDraft entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
sap.businessone.inventory: InventoryOpeningBalanceDraftsCollectionResponse
A paged collection of InventoryOpeningBalanceDrafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? InventoryOpeningBalanceDraft[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: InventoryOpeningBalanceLine
The InventoryOpeningBalanceLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- WarehouseCode? string - Warehouse code field
- BinEntry? Signed32 - Bin entry field
- InWarehouseQuantity? decimal - In warehouse quantity field
- OpeningBalance? decimal - Opening balance field
- Remarks? string - Remarks field
- BarCode? string - Bar code field
- VisualOrder? Signed32 - Visual order field
- Price? decimal - Price field
- Total? decimal - Total field
- OpenInventoryAccount? string - Open inventory account field
- ProjectCode? string - Project code field
- Manufacturer? Signed32 - Manufacturer field
- SupplierCatalogNo? string - Supplier catalog number field
- CostingCode? string - Costing code field
- CostingCode2? string - Costing code2 field
- CostingCode3? string - Costing code3 field
- CostingCode4? string - Costing code4 field
- CostingCode5? string - Costing code5 field
- PreferredVendor? string - Preferred vendor field
- Currency? string - Currency field
- AllowBinNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ActualPrice? decimal - Actual price field
- PostedValueLC? decimal - Posted value local currency field
- PostedValueSC? decimal - Posted value system currency field
- WeightOfRecycledPlastic? decimal - Weight of recycled plastic field
- PlasticPackageExemptionReason? string - Plastic package exemption reason field
- InventoryOpeningBalanceSerialNumbers? InventoryOpeningBalanceSerialNumber[] - Inventory opening balance serial numbers field
- InventoryOpeningBalanceBatchNumbers? InventoryOpeningBalanceBatchNumber[] - Inventory opening balance batch numbers field
- InventoryOpeningBalanceCCDNumbers? InventoryOpeningBalanceCCDNumber[] - Inventory opening balance CCD numbers field
sap.businessone.inventory: InventoryOpeningBalanceParams
The InventoryOpeningBalanceParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 - Document entry field
- documentNumber? Signed32 - Document number field
sap.businessone.inventory: InventoryOpeningBalancesCollectionResponse
A paged collection of InventoryOpeningBalances entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? InventoryOpeningBalance[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: InventoryOpeningBalanceSerialNumber
The InventoryOpeningBalanceSerialNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 - Base line number field
- warrantyStart? string - Warranty start field
- expiryDate? string - Expiry date field
- itemCode? string - Item code field
- receptionDate? string - Reception date field
- manufactureDate? string - Manufacture date field
- warrantyEnd? string - Warranty end field
- batchID? string - Batch ID field
- quantity? decimal - Quantity field
- internalSerialNumber? string - Internal serial number field
- systemSerialNumber? Signed32 - System serial number field
- trackingNote? Signed32 - Tracking note field
- documentEntry? Signed32 - Document entry field
- trackingNoteLine? Signed32 - Tracking note line field
- notes? string - Notes field
- manufacturerSerialNumber? string - Manufacturer serial number field
- location? string - Location field
sap.businessone.inventory: InventoryPosting
The InventoryPosting entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- PostingDate? string - Posting date field
- CountDate? string - Count date field
- CountTime? string - Count time field
- Remarks? string - Remarks field
- Reference2? string - Reference2 field
- BranchID? Signed32 - Branch ID field
- PriceSource? InventoryPostingPriceSourceEnum - OData EnumType 'InventoryPostingPriceSourceEnum'. Serialised by the Service Layer as the member name
- PriceList? Signed32 - Price list field
- JournalRemark? string - Journal remark field
- DocObjectCodeEx? string - Document object code ex field
- FinancialPeriod? Signed32 - Financial period field
- PeriodIndicator? string - Period indicator field
- AttachmentEntry? Signed32 - Attachment entry field
- YearEndDate? string - Year end date field
- InventoryPostingLines? InventoryPostingLine[] - Inventory posting lines field
- InventoryPostingDocumentReferencesCollection? InventoryPostingDocumentReferences[] - Inventory posting document references collection field
sap.businessone.inventory: InventoryPostingBatchNumber
The InventoryPostingBatchNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 - Base line number field
- expiryDate? string - Expiry date field
- itemCode? string - Item code field
- addmisionDate? string - Addmision date field
- batchNumber? string - Batch number field
- manufactureDate? string - Manufacture date field
- quantity? decimal - Quantity field
- internalSerialNumber? string - Internal serial number field
- systemSerialNumber? Signed32 - System serial number field
- trackingNote? Signed32 - Tracking note field
- documentEntry? Signed32 - Document entry field
- trackingNoteLine? Signed32 - Tracking note line field
- notes? string - Notes field
- manufacturerSerialNumber? string - Manufacturer serial number field
- location? string - Location field
sap.businessone.inventory: InventoryPostingCCDNumber
The InventoryPostingCCDNumber complex type of the SAP Business One Service Layer
Fields
- cCDNumber? string - C code number field
- baseLineNumber? Signed32 - Base line number field
- subLineNumber? Signed32 - Sub line number field
- trackingNote? Signed32 - Tracking note field
- countryOfOrigin? string - Country of origin field
- documentEntry? Signed32 - Document entry field
- quantity? decimal - Quantity field
- childNumber? Signed32 - Child number field
- trackingNoteLine? Signed32 - Tracking note line field
sap.businessone.inventory: InventoryPostingCopyOption
The InventoryPostingCopyOption complex type of the SAP Business One Service Layer
Fields
- copyOption? InventoryPostingCopyOptionEnum - Copy option field
- baseEntry? Signed32 - Base entry field
sap.businessone.inventory: InventoryPostingDocumentReferences
The InventoryPostingDocumentReferences complex type of the SAP Business One Service Layer
Fields
- referencedDocEntry? Signed32 - Referenced document entry field
- referencedObjectType? ReferencedObjectTypeEnum - Referenced object type field
- docEntry? Signed32 - Document entry field
- externalReferencedDocNumber? string - External referenced document number field
- issueDate? string - Issue date field
- referencedDocNumber? Signed32 - Referenced document number field
- lineNumber? Signed32 - Line number field
- remark? string - Remark field
sap.businessone.inventory: InventoryPostingDraft
The InventoryPostingDraft entity of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- PostingDate? string - Posting date field
- CountDate? string - Count date field
- CountTime? string - Count time field
- Comments? string - Comments field
- Reference2? string - Reference2 field
- BranchID? Signed32 - Branch ID field
- JournalRemark? string - Journal remark field
- DocObjectCodeEx? string - Document object code ex field
- FinancialPeriod? Signed32 - Financial period field
- PeriodIndicator? string - Period indicator field
- AttachmentEntry? Signed32 - Attachment entry field
- YearEndDate? string - Year end date field
sap.businessone.inventory: InventoryPostingDraftsCollectionResponse
A paged collection of InventoryPostingDrafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? InventoryPostingDraft[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: InventoryPostingLine
The InventoryPostingLine complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- WarehouseCode? string - Warehouse code field
- BinEntry? Signed32 - Bin entry field
- InWarehouseQuantity? decimal - In warehouse quantity field
- BarCode? string - Bar code field
- Variance? decimal - Variance field
- VariancePercentage? decimal - Variance percentage field
- CountedQuantity? decimal - Counted quantity field
- Price? decimal - Price field
- Currency? string - Currency field
- Total? decimal - Total field
- VisualOrder? Signed32 - Visual order field
- CountDate? string - Count date field
- CountTime? string - Count time field
- BaseEntry? Signed32 - Base entry field
- BaseLine? Signed32 - Base line field
- BaseType? Signed32 - Base type field
- BaseReference? string - Base reference field
- Remarks? string - Remarks field
- InventoryOffsetIncreaseAccount? string - Inventory offset increase account field
- InventoryOffsetDecreaseAccount? string - Inventory offset decrease account field
- ProjectCode? string - Project code field
- Manufacturer? Signed32 - Manufacturer field
- SupplierCatalogNo? string - Supplier catalog number field
- PreferredVendor? string - Preferred vendor field
- CostingCode? string - Costing code field
- CostingCode2? string - Costing code2 field
- CostingCode3? string - Costing code3 field
- CostingCode4? string - Costing code4 field
- CostingCode5? string - Costing code5 field
- UoMCode? string - Uo m code field
- UoMCountedQuantity? decimal - Uo m counted quantity field
- ItemsPerUnit? decimal - Items per unit field
- AllowBinNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ActualPrice? decimal - Actual price field
- PostedValueLC? decimal - Posted value local currency field
- PostedValueSC? decimal - Posted value system currency field
- InventoryPostingLineUoMs? InventoryPostingLineUoM[] - Inventory posting line uo ms field
- InventoryPostingSerialNumbers? InventoryPostingSerialNumber[] - Inventory posting serial numbers field
- InventoryPostingBatchNumbers? InventoryPostingBatchNumber[] - Inventory posting batch numbers field
- InventoryPostingCCDNumbers? InventoryPostingCCDNumber[] - Inventory posting CCD numbers field
sap.businessone.inventory: InventoryPostingLineUoM
The InventoryPostingLineUoM complex type of the SAP Business One Service Layer
Fields
- DocumentEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- ChildNumber? Signed32 - Child number field
- UoMCountedQuantity? decimal - Uo m counted quantity field
- ItemsPerUnit? decimal - Items per unit field
- CountedQuantity? decimal - Counted quantity field
- UoMCode? string - Uo m code field
- BarCode? string - Bar code field
sap.businessone.inventory: InventoryPostingParams
The InventoryPostingParams complex type of the SAP Business One Service Layer
Fields
- documentEntry? Signed32 - Document entry field
- documentNumber? Signed32 - Document number field
sap.businessone.inventory: InventoryPostingsCollectionResponse
A paged collection of InventoryPostings entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? InventoryPosting[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: InventoryPostingSerialNumber
The InventoryPostingSerialNumber complex type of the SAP Business One Service Layer
Fields
- baseLineNumber? Signed32 - Base line number field
- warrantyStart? string - Warranty start field
- expiryDate? string - Expiry date field
- itemCode? string - Item code field
- receptionDate? string - Reception date field
- manufactureDate? string - Manufacture date field
- warrantyEnd? string - Warranty end field
- batchID? string - Batch ID field
- quantity? decimal - Quantity field
- internalSerialNumber? string - Internal serial number field
- systemSerialNumber? Signed32 - System serial number field
- trackingNote? Signed32 - Tracking note field
- documentEntry? Signed32 - Document entry field
- trackingNoteLine? Signed32 - Tracking note line field
- notes? string - Notes field
- manufacturerSerialNumber? string - Manufacturer serial number field
- location? string - Location field
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 - Inventory posting copy option field
sap.businessone.inventory: InventoryTransferRequestsCollectionResponse
A paged collection of InventoryTransferRequests entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? StockTransfer[] - Value field
- odataNextLink? string - Odata next link field
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 - Stock transfer field
sap.businessone.inventory: Item
The Item entity of the SAP Business One Service Layer
Fields
- ItemCode? string - Item code field
- ItemName? string - Item name field
- ForeignName? string - Foreign name field
- ItemsGroupCode? Signed32 - Items group code field
- CustomsGroupCode? Signed32 - Customs group code field
- SalesVATGroup? string - Sales VAT group field
- BarCode? string - Bar code field
- 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 - Income account field
- ExemptIncomeAccount? string - Exempt income account field
- ExpanseAccount? string - Expanse account field
- Mainsupplier? string - Mainsupplier field
- SupplierCatalogNo? string - Supplier catalog number field
- DesiredInventory? decimal - Desired inventory field
- MinInventory? decimal - Min inventory field
- Picture? string - Picture field
- User_Text? string - User text field
- SerialNum? string - Serial number field
- CommissionPercent? decimal - Commission percent field
- CommissionSum? decimal - Commission sum field
- CommissionGroup? Signed32 - Commission group field
- 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 - Data export code field
- Manufacturer? Signed32 - Manufacturer field
- QuantityOnStock? decimal - Quantity on stock field
- QuantityOrderedFromVendors? decimal - Quantity ordered from vendors field
- QuantityOrderedByCustomers? decimal - Quantity ordered by customers field
- 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 - Valid from field
- ValidTo? string - Valid to field
- ValidRemarks? string - Valid remarks field
- Frozen? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- FrozenFrom? string - Frozen from field
- FrozenTo? string - Frozen to field
- FrozenRemarks? string - Frozen remarks field
- SalesUnit? string - Sales unit field
- SalesItemsPerUnit? decimal - Sales items per unit field
- SalesPackagingUnit? string - Sales packaging unit field
- SalesQtyPerPackUnit? decimal - Sales quantity per pack unit field
- SalesUnitLength? decimal - Sales unit length field
- SalesLengthUnit? Signed32 - Sales length unit field
- SalesUnitWidth? decimal - Sales unit width field
- SalesWidthUnit? Signed32 - Sales width unit field
- SalesUnitHeight? decimal - Sales unit height field
- SalesHeightUnit? Signed32 - Sales height unit field
- SalesUnitVolume? decimal - Sales unit volume field
- SalesVolumeUnit? Signed32 - Sales volume unit field
- SalesUnitWeight? decimal - Sales unit weight field
- SalesWeightUnit? Signed32 - Sales weight unit field
- PurchaseUnit? string - Purchase unit field
- PurchaseItemsPerUnit? decimal - Purchase items per unit field
- PurchasePackagingUnit? string - Purchase packaging unit field
- PurchaseQtyPerPackUnit? decimal - Purchase quantity per pack unit field
- PurchaseUnitLength? decimal - Purchase unit length field
- PurchaseLengthUnit? Signed32 - Purchase length unit field
- PurchaseUnitWidth? decimal - Purchase unit width field
- PurchaseWidthUnit? Signed32 - Purchase width unit field
- PurchaseUnitHeight? decimal - Purchase unit height field
- PurchaseHeightUnit? Signed32 - Purchase height unit field
- PurchaseUnitVolume? decimal - Purchase unit volume field
- PurchaseVolumeUnit? Signed32 - Purchase volume unit field
- PurchaseUnitWeight? decimal - Purchase unit weight field
- PurchaseWeightUnit? Signed32 - Purchase weight unit field
- PurchaseVATGroup? string - Purchase VAT group field
- SalesFactor1? decimal - Sales factor1 field
- SalesFactor2? decimal - Sales factor2 field
- SalesFactor3? decimal - Sales factor3 field
- SalesFactor4? decimal - Sales factor4 field
- PurchaseFactor1? decimal - Purchase factor1 field
- PurchaseFactor2? decimal - Purchase factor2 field
- PurchaseFactor3? decimal - Purchase factor3 field
- PurchaseFactor4? decimal - Purchase factor4 field
- MovingAveragePrice? decimal - Moving average price field
- ForeignRevenuesAccount? string - Foreign revenues account field
- ECRevenuesAccount? string - EC revenues account field
- ForeignExpensesAccount? string - Foreign expenses account field
- ECExpensesAccount? string - EC expenses account field
- AvgStdPrice? decimal - Avg std price field
- DefaultWarehouse? string - Default warehouse field
- ShipType? Signed32 - Ship type field
- 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 - Max inventory field
- ManageStockByWarehouse? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PurchaseHeightUnit1? Signed32 - Purchase height unit1 field
- PurchaseUnitHeight1? decimal - Purchase unit height1 field
- PurchaseLengthUnit1? Signed32 - Purchase length unit1 field
- PurchaseUnitLength1? decimal - Purchase unit length1 field
- PurchaseWeightUnit1? Signed32 - Purchase weight unit1 field
- PurchaseUnitWeight1? decimal - Purchase unit weight1 field
- PurchaseWidthUnit1? Signed32 - Purchase width unit1 field
- PurchaseUnitWidth1? decimal - Purchase unit width1 field
- SalesHeightUnit1? Signed32 - Sales height unit1 field
- SalesUnitHeight1? decimal - Sales unit height1 field
- SalesLengthUnit1? Signed32 - Sales length unit1 field
- SalesUnitLength1? decimal - Sales unit length1 field
- SalesWeightUnit1? Signed32 - Sales weight unit1 field
- SalesUnitWeight1? decimal - Sales unit weight1 field
- SalesWidthUnit1? Signed32 - Sales width unit1 field
- SalesUnitWidth1? decimal - Sales unit width1 field
- 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 - SWW field
- WarrantyTemplate? string - Warranty template field
- IndirectTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ArTaxCode? string - Accounts receivable tax code field
- ApTaxCode? string - Accounts payable tax code field
- BaseUnitName? string - Base unit name field
- ItemCountryOrg? string - Item country organization field
- 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 - Inventory unit of measure field
- 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 - Order intervals field
- OrderMultiple? decimal - Order multiple field
- LeadTime? Signed32 - Lead time field
- MinOrderQuantity? decimal - Min order quantity field
- 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 - Outgoing service code field
- IncomingServiceCode? Signed32 - Incoming service code field
- ServiceGroup? Signed32 - Service group field
- NCMCode? Signed32 - NCM code field
- MaterialType? BoMaterialTypes - OData EnumType 'BoMaterialTypes'. Serialised by the Service Layer as the member name
- MaterialGroup? Signed32 - Material group field
- ProductSource? string - Product source field
- 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 - DNF entry field
- GTSItemSpec? string - GTS item spec field
- GTSItemTaxCategory? string - GTS item tax category field
- FuelID? Signed32 - Fuel ID field
- BeverageTableCode? string - Beverage table code field
- BeverageGroupCode? string - Beverage group code field
- BeverageCommercialBrandCode? Signed32 - Beverage commercial brand code field
- Series? Signed32 - Series field
- ToleranceDays? Signed32 - Tolerance days field
- 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 - Asset class field
- AssetGroup? string - Asset group field
- InventoryNumber? string - Inventory number field
- Technician? Signed32 - Technician field
- Employee? Signed32 - Employee field
- Location? Signed32 - Location field
- AssetStatus? AssetStatusEnum - OData EnumType 'AssetStatusEnum'. Serialised by the Service Layer as the member name
- CapitalizationDate? string - Capitalization date field
- 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 - Uo m group entry field
- InventoryUoMEntry? Signed32 - Inventory uo m entry field
- DefaultSalesUoMEntry? Signed32 - Default sales uo m entry field
- DefaultPurchasingUoMEntry? Signed32 - Default purchasing uo m entry field
- DepreciationGroup? string - Depreciation group field
- AssetSerialNumber? string - Asset serial number field
- InventoryWeight? decimal - Inventory weight field
- InventoryWeightUnit? Signed32 - Inventory weight unit field
- InventoryWeight1? decimal - Inventory weight1 field
- InventoryWeightUnit1? Signed32 - Inventory weight unit1 field
- DefaultCountingUnit? string - Default counting unit field
- CountingItemsPerUnit? decimal - Counting items per unit field
- DefaultCountingUoMEntry? Signed32 - Default counting uo m entry field
- Excisable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ChapterID? Signed32 - Chapter ID field
- ScsCode? string - Scs code field
- SpProdType? SpecialProductTypeEnum - OData EnumType 'SpecialProductTypeEnum'. Serialised by the Service Layer as the member name
- ProdStdCost? decimal - Prod std cost field
- 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 - Attachment entry field
- LinkedResource? string - Linked resource field
- UpdateDate? string - Update date field
- UpdateTime? string - Update time field
- GSTRelevnt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SACEntry? Signed32 - SAC entry field
- GSTTaxCategory? GSTTaxCategoryEnum - OData EnumType 'GSTTaxCategoryEnum'. Serialised by the Service Layer as the member name
- ServiceCategoryEntry? Signed32 - Service category entry field
- CapitalGoodsOnHoldPercent? decimal - Capital goods on hold percent field
- CapitalGoodsOnHoldLimit? decimal - Capital goods on hold limit field
- AssessableValue? decimal - Assessable value field
- AssVal4WTR? decimal - Ass val4 WTR field
- SOIExcisable? SOIExcisableTypeEnum - OData EnumType 'SOIExcisableTypeEnum'. Serialised by the Service Layer as the member name
- TNVED? string - TNVED field
- ImportedItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PricingUnit? Signed32 - Pricing unit field
- CreateDate? string - Create date field
- CreateTime? string - Create time field
- NVECode? string - NVE code field
- CtrSealQty? decimal - Ctr seal quantity field
- CESTCode? Signed32 - CEST code field
- LegalText? string - Legal text field
- DataVersion? Signed32 - Data version field
- CreateQRCodeFrom? string - Create QR code from field
- TraceableItem? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CommodityClassification? Signed32 - Commodity classification field
- WeightOfRecycledPlastic? decimal - Weight of recycled plastic field
- PlasticPackageTaxCategory? string - Plastic package tax category field
- PlasticPackageExemptionReasonForPurchase? string - Plastic package exemption reason for purchase field
- PlasticPackageExemptionReasonForProduction? string - Plastic package exemption reason for production field
- SAFTProductType? SAFTProductTypeEnum - OData EnumType 'SAFTProductTypeEnum'. Serialised by the Service Layer as the member name
- SAFTProductTypeEx? string - SAFT product type ex field
- StandardItemIdentification? Signed32 - Standard item identification field
- ItemPrices? ItemPrice[] - Item prices field
- ItemWarehouseInfoCollection? ItemWarehouseInfo[] - Item warehouse information collection field
- ItemPreferredVendors? ItemPreferredVendor[] - Item preferred vendors field
- ItemLocalizationInfos? ItemLocalizationInfo[] - Item localization infos field
- ItemProjects? ItemProject[] - Item projects field
- ItemDistributionRules? ItemDistributionRule[] - Item distribution rules field
- ItemAttributeGroups? ItemAttributeGroups[] - Item attribute groups field
- ItemDepreciationParameters? ItemDepreciationParameter[] - Item depreciation parameters field
- ItemPeriodControls? ItemPeriodControl[] - Item period controls field
- ItemUnitOfMeasurementCollection? ItemUnitOfMeasurement[] - Item unit of measurement collection field
- ItemBarCodeCollection? ItemBarCode[] - Item bar code collection field
- 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[] - Bin locations field
- AlternateCatNum? AlternateCatNum[] - Alternate cat number field
- StockTakings? StockTaking[] - Stock takings field
- BarCodes? BarCode[] - Bar codes field
- SpecialPrices? SpecialPrice[] - Special prices field
- SerialNumberDetails? SerialNumberDetail[] - Serial number details field
- BatchNumberDetails? BatchNumberDetail[] - Batch number details field
sap.businessone.inventory: ItemAttributeGroups
The ItemAttributeGroups complex type of the SAP Business One Service Layer
Fields
- attribute41? Signed32 - Attribute41 field
- attribute40? Signed32 - Attribute40 field
- attribute43? string - Attribute43 field
- attribute42? Signed32 - Attribute42 field
- attribute45? string - Attribute45 field
- attribute44? string - Attribute44 field
- attribute47? string - Attribute47 field
- attribute46? string - Attribute46 field
- attribute38? Signed32 - Attribute38 field
- attribute37? Signed32 - Attribute37 field
- attribute39? Signed32 - Attribute39 field
- attribute30? string - Attribute30 field
- attribute32? string - Attribute32 field
- attribute31? string - Attribute31 field
- attribute34? Signed32 - Attribute34 field
- attribute33? Signed32 - Attribute33 field
- attribute36? Signed32 - Attribute36 field
- attribute35? Signed32 - Attribute35 field
- attribute27? string - Attribute27 field
- attribute26? string - Attribute26 field
- attribute29? string - Attribute29 field
- attribute28? string - Attribute28 field
- attribute9? string - Attribute9 field
- attribute8? string - Attribute8 field
- attribute7? string - Attribute7 field
- attribute6? string - Attribute6 field
- attribute5? string - Attribute5 field
- attribute61? decimal - Attribute61 field
- attribute4? string - Attribute4 field
- attribute60? decimal - Attribute60 field
- attribute3? string - Attribute3 field
- attribute63? decimal - Attribute63 field
- attribute2? string - Attribute2 field
- attribute62? decimal - Attribute62 field
- attribute1? string - Attribute1 field
- attribute21? string - Attribute21 field
- attribute20? string - Attribute20 field
- attribute64? decimal - Attribute64 field
- attribute23? string - Attribute23 field
- attribute22? string - Attribute22 field
- attribute25? string - Attribute25 field
- attribute24? string - Attribute24 field
- attribute16? string - Attribute16 field
- attribute15? string - Attribute15 field
- attribute59? decimal - Attribute59 field
- attribute18? string - Attribute18 field
- attribute17? string - Attribute17 field
- attribute19? string - Attribute19 field
- attribute50? decimal - Attribute50 field
- attribute52? decimal - Attribute52 field
- attribute51? decimal - Attribute51 field
- attribute10? string - Attribute10 field
- attribute54? decimal - Attribute54 field
- attribute53? decimal - Attribute53 field
- attribute12? string - Attribute12 field
- attribute56? decimal - Attribute56 field
- attribute11? string - Attribute11 field
- attribute55? decimal - Attribute55 field
- attribute14? string - Attribute14 field
- attribute58? decimal - Attribute58 field
- attribute13? string - Attribute13 field
- attribute57? decimal - Attribute57 field
- attribute49? decimal - Attribute49 field
- attribute48? decimal - Attribute48 field
sap.businessone.inventory: ItemBarCode
The ItemBarCode complex type of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 - Abs entry field
- UoMEntry? Signed32 - Uo m entry field
- Barcode? string - Barcode field
- FreeText? string - Free text field
sap.businessone.inventory: ItemCycleCount
The ItemCycleCount complex type of the SAP Business One Service Layer
Fields
- CycleCode? Signed32 - Cycle code field
- Alert? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NextCountingDate? string - Next counting date field
- AlertTime? string - Alert time field
- DestinationUser? Signed32 - Destination user field
- WarehouseCode? string - Warehouse code field
sap.businessone.inventory: ItemDepreciationParameter
The ItemDepreciationParameter complex type of the SAP Business One Service Layer
Fields
- remainingUnits? Signed32 - Remaining units field
- fiscalYear? string - Fiscal year field
- depreciationStartDate? string - Depreciation start date field
- depreciationEndDate? string - Depreciation end date field
- standardUnits? Signed32 - Standard units field
- depreciationArea? string - Depreciation area field
- remainingLife? decimal - Remaining life field
- depreciationType? string - Depreciation type field
- usefulLife? Signed32 - Useful life field
- totalUnitsInUsefulLife? Signed32 - Total units in useful life field
sap.businessone.inventory: ItemDistributionRule
The ItemDistributionRule complex type of the SAP Business One Service Layer
Fields
- distributionRule? string - Distribution rule field
- distributionRule4? string - Distribution rule4 field
- distributionRule5? string - Distribution rule5 field
- distributionRule2? string - Distribution rule2 field
- distributionRule3? string - Distribution rule3 field
- validTo? string - Valid to field
- validFrom? string - Valid from field
- lineNumber? Signed32 - Line number field
sap.businessone.inventory: ItemGroups
The ItemGroups entity of the SAP Business One Service Layer
Fields
- PriceDifferencesAccount? string - Price differences account field
- StockInflationAdjustAccount? string - Stock inflation adjust account field
- MinimumOrderQuantity? decimal - Minimum order quantity field
- OrderInterval? Signed32 - Order interval field
- ExchangeRateDifferencesAccount? string - Exchange rate differences account field
- IncreasingAccount? string - Increasing account field
- StockInflationOffsetAccount? string - Stock inflation offset account field
- 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 - Purchase offset account field
- InventorySystem? BoInventorySystem - OData EnumType 'BoInventorySystem'. Serialised by the Service Layer as the member name
- WIPMaterialVarianceAccount? string - WIP material variance account field
- PlanningSystem? BoPlanningSystem - OData EnumType 'BoPlanningSystem'. Serialised by the Service Layer as the member name
- PurchaseAccount? string - Purchase account field
- ReturningAccount? string - Returning account field
- CostInflationAccount? string - Cost inflation account field
- ExpensesAccount? string - Expenses account field
- RevenuesAccount? string - Revenues account field
- TransfersAccount? string - Transfers account field
- LeadTime? Signed32 - Lead time field
- OrderMultiple? decimal - Order multiple field
- CostInflationOffsetAccount? string - Cost inflation offset account field
- InventoryAccount? string - Inventory account field
- DecreaseGLAccount? string - Decrease general ledger account field
- Number? Signed32 - Number field
- GoodsClearingAccount? string - Goods clearing account field
- IncreaseGLAccount? string - Increase general ledger account field
- ForeignRevenuesAccount? string - Foreign revenues account field
- Alert? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WIPMaterialAccount? string - WIP material account field
- ShippedGoodsAccount? string - Shipped goods account field
- ExemptRevenuesAccount? string - Exempt revenues account field
- DecreasingAccount? string - Decreasing account field
- VATInRevenueAccount? string - VAT in revenue account field
- VarianceAccount? string - Variance account field
- EUExpensesAccount? string - EU expenses account field
- ForeignExpensesAccount? string - Foreign expenses account field
- CycleCode? Signed32 - Cycle code field
- CostAccount? string - Cost account field
- EURevenuesAccount? string - EU revenues account field
- PAReturnAccount? string - PA return account field
- GroupName? string - Group name field
- ExpenseClearingAct? string - Expense clearing act field
- PurchaseCreditAcc? string - Purchase credit acc field
- EUPurchaseCreditAcc? string - EU purchase credit acc field
- ForeignPurchaseCreditAcc? string - Foreign purchase credit acc field
- SalesCreditAcc? string - Sales credit acc field
- SalesCreditEUAcc? string - Sales credit EU acc field
- ExemptedCredits? string - Exempted credits field
- SalesCreditForeignAcc? string - Sales credit foreign acc field
- ExpenseOffsetAccount? string - Expense offset account field
- NegativeInventoryAdjustmentAccount? string - Negative inventory adjustment account field
- WHIncomingCenvatAccount? string - Warehouse incoming cenvat account field
- WHOutgoingCenvatAccount? string - Warehouse outgoing cenvat account field
- StockInTransitAccount? string - Stock in transit account field
- WipOffsetProfitAndLossAccount? string - Wip offset profit and loss account field
- InventoryOffsetProfitAndLossAccount? string - Inventory offset profit and loss account field
- ToleranceDays? Signed32 - Tolerance days field
- DefaultUoMGroup? Signed32 - Default uo m group field
- DefaultInventoryUoM? Signed32 - Default inventory uo m field
- PurchaseBalanceAccount? string - Purchase balance account field
- 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[] - Item groups warehouse infos field
- 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[] - Items field
- BinLocations? BinLocation[] - Bin locations field
sap.businessone.inventory: ItemGroupsCollectionResponse
A paged collection of ItemGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ItemGroups[] - Value field
- odataNextLink? string - Odata next link field
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 - Item groups field
sap.businessone.inventory: ItemGroupsWarehouseInfo
The ItemGroupsWarehouseInfo complex type of the SAP Business One Service Layer
Fields
- defaultBin? Signed32 - Default bin field
- itmsGrpCod? Signed32 - Itms group cod field
- defaultBinEnforced? BoYesNoEnum - Default bin enforced field
- warehouseCode? string - Warehouse code field
sap.businessone.inventory: ItemImage
The ItemImage entity of the SAP Business One Service Layer
Fields
- itemCode? string - Item code field
- picture? string - Picture field
sap.businessone.inventory: ItemImagesCollectionResponse
A paged collection of ItemImages entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ItemImage[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: ItemIntrastatExtension
The ItemIntrastatExtension complex type of the SAP Business One Service Layer
Fields
- importNatureOfTransaction? Signed32 - Import nature of transaction field
- factorOfSupplementaryUnit? decimal - Factor of supplementary unit field
- itemCode? string - Item code field
- importRegionState? Signed32 - Import region state field
- exportNatureOfTransaction? Signed32 - Export nature of transaction field
- countryOfOrigin? string - Country of origin field
- serviceSupplyMethod? BoServiceSupplyMethods - Service supply method field
- exportRegionCountry? string - Export region country field
- exportRegionState? Signed32 - Export region state field
- intrastatRelevant? BoYesNoEnum - Intrastat relevant field
- supplementaryUnit? Signed32 - Supplementary unit field
- 'type? BoDocumentTypes - Type field
- servicePaymentMethod? BoServicePaymentMethods - Service payment method field
- serviceCode? Signed32 - Service code field
- useWeightInCalculation? BoYesNoEnum - Use weight in calculation field
- commodityCode? Signed32 - Commodity code field
- importStatisticalProcedure? Signed32 - Import statistical procedure field
- statisticalCode? string - Statistical code field
- importRegionCountry? string - Import region country field
- exportStatisticalProcedure? Signed32 - Export statistical procedure field
sap.businessone.inventory: ItemLocalizationInfo
The ItemLocalizationInfo complex type of the SAP Business One Service Layer
Fields
- ItemCode? string - Item code field
- IncomeNature? string - Income nature field
sap.businessone.inventory: ItemPeriodControl
The ItemPeriodControl complex type of the SAP Business One Service Layer
Fields
- fiscalYear? string - Fiscal year field
- subPeriod? Signed32 - Sub period field
- factor? decimal - Factor field
- depreciationStatus? BoYesNoEnum - Depreciation status field
- depreciationArea? string - Depreciation area field
- actualUnits? Signed32 - Actual units field
sap.businessone.inventory: ItemPreferredVendor
The ItemPreferredVendor complex type of the SAP Business One Service Layer
Fields
- BPCode? string - Business partner code field
sap.businessone.inventory: ItemPrice
The ItemPrice complex type of the SAP Business One Service Layer
Fields
- PriceList? Signed32 - Price list field
- Price? decimal - Price field
- Currency? string - Currency field
- AdditionalPrice1? decimal - Additional price1 field
- AdditionalCurrency1? string - Additional currency1 field
- AdditionalPrice2? decimal - Additional price2 field
- AdditionalCurrency2? string - Additional currency2 field
- BasePriceList? Signed32 - Base price list field
- Factor? decimal - Factor field
- UoMPrices? UoMPrice[] - Uo m prices field
sap.businessone.inventory: ItemProject
The ItemProject complex type of the SAP Business One Service Layer
Fields
- project? string - Project field
- validTo? string - Valid to field
- validFrom? string - Valid from field
- lineNumber? Signed32 - Line number field
sap.businessone.inventory: ItemPropertiesCollectionResponse
A paged collection of ItemProperties entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ItemProperty[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: ItemProperty
The ItemProperty entity of the SAP Business One Service Layer
Fields
- Number? Signed32 - Number field
- PropertyName? string - Property name field
sap.businessone.inventory: ItemsCollectionResponse
A paged collection of Items entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Item[] - Value field
- odataNextLink? string - Odata next link field
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 - Uo m entry field
- DefaultBarcode? Signed32 - Default barcode field
- DefaultPackage? Signed32 - Default package field
- Length1? decimal - Length1 field
- Length1Unit? Signed32 - Length1 unit field
- Length2? decimal - Length2 field
- Length2Unit? Signed32 - Length2 unit field
- Width1? decimal - Width1 field
- Width1Unit? Signed32 - Width1 unit field
- Width2? decimal - Width2 field
- Width2Unit? Signed32 - Width2 unit field
- Height1? decimal - Height1 field
- Height1Unit? Signed32 - Height1 unit field
- Height2? decimal - Height2 field
- Height2Unit? Signed32 - Height2 unit field
- Volume? decimal - Volume field
- VolumeUnit? Signed32 - Volume unit field
- Weight1? decimal - Weight1 field
- Weight1Unit? Signed32 - Weight1 unit field
- Weight2? decimal - Weight2 field
- Weight2Unit? Signed32 - Weight2 unit field
- ItemUoMPackageCollection? ItemUoMPackage[] - Item uo m package collection field
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 - Uo m entry field
- PackageTypeEntry? Signed32 - Package type entry field
- Length1? decimal - Length1 field
- Length1Unit? Signed32 - Length1 unit field
- Length2? decimal - Length2 field
- Length2Unit? Signed32 - Length2 unit field
- Width1? decimal - Width1 field
- Width1Unit? Signed32 - Width1 unit field
- Width2? decimal - Width2 field
- Width2Unit? Signed32 - Width2 unit field
- Height1? decimal - Height1 field
- Height1Unit? Signed32 - Height1 unit field
- Height2? decimal - Height2 field
- Height2Unit? Signed32 - Height2 unit field
- Volume? decimal - Volume field
- VolumeUnit? Signed32 - Volume unit field
- Weight1? decimal - Weight1 field
- Weight1Unit? Signed32 - Weight1 unit field
- Weight2? decimal - Weight2 field
- Weight2Unit? Signed32 - Weight2 unit field
- QuantityPerPackage? decimal - Quantity per package field
sap.businessone.inventory: ItemWarehouseInfo
The ItemWarehouseInfo complex type of the SAP Business One Service Layer
Fields
- MinimalStock? decimal - Minimal stock field
- MaximalStock? decimal - Maximal stock field
- MinimalOrder? decimal - Minimal order field
- StandardAveragePrice? decimal - Standard average price field
- Locked? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- InventoryAccount? string - Inventory account field
- CostAccount? string - Cost account field
- TransferAccount? string - Transfer account field
- RevenuesAccount? string - Revenues account field
- VarienceAccount? string - Varience account field
- DecreasingAccount? string - Decreasing account field
- IncreasingAccount? string - Increasing account field
- ReturningAccount? string - Returning account field
- ExpensesAccount? string - Expenses account field
- EURevenuesAccount? string - EU revenues account field
- EUExpensesAccount? string - EU expenses account field
- ForeignRevenueAcc? string - Foreign revenue acc field
- ForeignExpensAcc? string - Foreign expens acc field
- ExemptIncomeAcc? string - Exempt income acc field
- PriceDifferenceAcc? string - Price difference acc field
- WarehouseCode? string - Warehouse code field
- InStock? decimal - In stock field
- Committed? decimal - Committed field
- Ordered? decimal - Ordered field
- CountedQuantity? decimal - Counted quantity field
- WasCounted? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- UserSignature? Signed32 - User signature field
- Counted? decimal - Counted field
- ExpenseClearingAct? string - Expense clearing act field
- PurchaseCreditAcc? string - Purchase credit acc field
- EUPurchaseCreditAcc? string - EU purchase credit acc field
- ForeignPurchaseCreditAcc? string - Foreign purchase credit acc field
- SalesCreditAcc? string - Sales credit acc field
- SalesCreditEUAcc? string - Sales credit EU acc field
- ExemptedCredits? string - Exempted credits field
- SalesCreditForeignAcc? string - Sales credit foreign acc field
- ExpenseOffsettingAccount? string - Expense offsetting account field
- WipAccount? string - Wip account field
- ExchangeRateDifferencesAcct? string - Exchange rate differences account field
- GoodsClearingAcct? string - Goods clearing account field
- NegativeInventoryAdjustmentAccount? string - Negative inventory adjustment account field
- CostInflationOffsetAccount? string - Cost inflation offset account field
- GLDecreaseAcct? string - General ledger decrease account field
- GLIncreaseAcct? string - General ledger increase account field
- PAReturnAcct? string - PA return account field
- PurchaseAcct? string - Purchase account field
- PurchaseOffsetAcct? string - Purchase offset account field
- ShippedGoodsAccount? string - Shipped goods account field
- StockInflationOffsetAccount? string - Stock inflation offset account field
- StockInflationAdjustAccount? string - Stock inflation adjust account field
- VATInRevenueAccount? string - VAT in revenue account field
- WipVarianceAccount? string - Wip variance account field
- CostInflationAccount? string - Cost inflation account field
- WHIncomingCenvatAccount? string - Warehouse incoming cenvat account field
- WHOutgoingCenvatAccount? string - Warehouse outgoing cenvat account field
- StockInTransitAccount? string - Stock in transit account field
- WipOffsetProfitAndLossAccount? string - Wip offset profit and loss account field
- InventoryOffsetProfitAndLossAccount? string - Inventory offset profit and loss account field
- DefaultBin? Signed32 - Default bin field
- DefaultBinEnforced? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- PurchaseBalanceAccount? string - Purchase balance account field
- ItemCode? string - Item code field
- IndEscala? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CNJPMan? string - CNJP man field
- ItemCycleCounts? ItemCycleCount[] - Item cycle counts field
sap.businessone.inventory: Layer
The Layer complex type of the SAP Business One Service Layer
Fields
- openQty? decimal - Open quantity field
- layerID? Signed32 - Layer ID field
- docNumber? string - Document number field
- entryDate? string - Entry date field
- docType? TransTypesEnum - Document type field
- currentCost? decimal - Current cost field
- transactionSequenceNum? Signed32 - Transaction sequence number field
sap.businessone.inventory: LengthMeasure
The LengthMeasure entity of the SAP Business One Service Layer
Fields
- UnitCode? Signed32 - Unit code field
- UnitDisplay? string - Unit display field
- UnitName? string - Unit name field
- UnitCodeforQuantityDisplay? string - Unit codefor quantity display field
- UnitLengthinmm? decimal - Unit lengthinmm field
sap.businessone.inventory: LengthMeasuresCollectionResponse
A paged collection of LengthMeasures entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? LengthMeasure[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: LineExpenseTaxJurisdiction
The LineExpenseTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
sap.businessone.inventory: LineFreightEBooksDetail
The LineFreightEBooksDetail complex type of the SAP Business One Service Layer
Fields
- IncomeClassificationType? Signed32 - Income classification type field
- IncomeClassificationCategory? Signed32 - Income classification category field
- ExpensesClassificationType? Signed32 - Expenses classification type field
- ExpensesClassificationCategory? Signed32 - Expenses classification category field
- NetValueLC? decimal - Net value local currency field
- NetValueFC? decimal - Net value foreign currency field
- NetValueSC? decimal - Net value system currency field
- VatCategory? Signed32 - VAT category field
- WithheldPercentCategory? Signed32 - Withheld percent category field
- WithheldAmountLC? decimal - Withheld amount local currency field
- WithheldAmountFC? decimal - Withheld amount foreign currency field
- WithheldAmountSC? decimal - Withheld amount system currency field
- VatClassificationType? Signed32 - VAT classification type field
- VatClassificationCategory? Signed32 - VAT classification category field
- VATExemptionCause? Signed32 - VAT exemption cause field
sap.businessone.inventory: LineTaxJurisdiction
The LineTaxJurisdiction complex type of the SAP Business One Service Layer
Fields
- JurisdictionCode? string - Jurisdiction code field
- JurisdictionType? Signed32 - Jurisdiction type field
- TaxAmount? decimal - Tax amount field
- TaxAmountSC? decimal - Tax amount system currency field
- TaxAmountFC? decimal - Tax amount foreign currency field
- TaxRate? decimal - Tax rate field
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RowSequence? Signed32 - Row sequence field
- ExternalCalcTaxRate? decimal - External calc tax rate field
- ExternalCalcTaxAmount? decimal - External calc tax amount field
- ExternalCalcTaxAmountFC? decimal - External calc tax amount foreign currency field
- ExternalCalcTaxAmountSC? decimal - External calc tax amount system currency field
- BaseSum? decimal - Base sum field
- TaxInPrice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- NonDeductiblePercent? decimal - Non deductible percent field
- TaxOnReserveInvoice? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Exempt? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Unencumbered? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.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 - Code field
- ManufacturerName? string - Manufacturer name field
- Items? Item[] - Items field
sap.businessone.inventory: ManufacturersCollectionResponse
A paged collection of Manufacturers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Manufacturer[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: MaterialRevaluation
The MaterialRevaluation entity of the SAP Business One Service Layer
Fields
- DocNum? Signed32 - Document number field
- DocDate? string - Document date field
- Reference1? string - Reference1 field
- Reference2? string - Reference2 field
- Comments? string - Comments field
- JournalMemo? string - Journal memo field
- DocTime? string - Document time field
- Series? Signed32 - Series field
- TaxDate? string - Tax date field
- DocEntry? Signed32 - Document entry field
- CreationDate? string - Creation date field
- UpdateDate? string - Update date field
- TransNum? Signed32 - Trans number field
- RevalType? string - Reval type field
- RevaluationIncomeAccount? string - Revaluation income account field
- RevaluationExpenseAccount? string - Revaluation expense account field
- DataSource? string - Data source field
- UserSignature? Signed32 - User signature field
- InflationRevaluation? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CardCode? string - Card code field
- CardName? string - Card name field
- MaterialRevaluationLines? MaterialRevaluationLine[] - Material revaluation lines field
- MaterialRevaluationDocumentReferencesCollection? MaterialRevaluationDocumentReferences[] - Material revaluation document references collection field
sap.businessone.inventory: MaterialRevaluationCollectionResponse
A paged collection of MaterialRevaluation entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? MaterialRevaluation[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: MaterialRevaluationDocumentReferences
The MaterialRevaluationDocumentReferences complex type of the SAP Business One Service Layer
Fields
- referencedDocEntry? Signed32 - Referenced document entry field
- referencedObjectType? ReferencedObjectTypeEnum - Referenced object type field
- docEntry? Signed32 - Document entry field
- externalReferencedDocNumber? string - External referenced document number field
- issueDate? string - Issue date field
- referencedDocNumber? Signed32 - Referenced document number field
- lineNumber? Signed32 - Line number field
- remark? string - Remark field
sap.businessone.inventory: MaterialRevaluationFIFO
The MaterialRevaluationFIFO complex type of the SAP Business One Service Layer
Fields
- layers? Layer[] - Layers field
sap.businessone.inventory: MaterialRevaluationFIFOParams
The MaterialRevaluationFIFOParams complex type of the SAP Business One Service Layer
Fields
- itemCode? string - Item code field
- showIssuedLayers? BoYesNoEnum - Show issued layers field
- locationCode? string - Location code field
- locationType? string - Location type field
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 - Material revaluation FIFO params field
sap.businessone.inventory: MaterialRevaluationLine
The MaterialRevaluationLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 - Line number field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- Quantity? decimal - Quantity field
- Price? decimal - Price field
- WarehouseCode? string - Warehouse code field
- ActualPrice? decimal - Actual price field
- OnHand? decimal - On hand field
- DebitCredit? decimal - Debit credit field
- DocEntry? Signed32 - Document entry field
- RevaluationDecrementAccount? string - Revaluation decrement account field
- RevaluationIncrementAccount? string - Revaluation increment account field
- RevalAmountToStock? decimal - Reval amount to stock field
- Project? string - Project field
- DistributionRule? string - Distribution rule field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- FIFOLayers? FIFOLayer[] - FIFO layers field
- SNBLinesCollection? SNBLines[] - SNB lines collection field
sap.businessone.inventory: MaterialRevaluationSNBParam
The MaterialRevaluationSNBParam complex type of the SAP Business One Service Layer
Fields
- itemCode? string - Item code field
sap.businessone.inventory: MaterialRevaluationSNBParams
The MaterialRevaluationSNBParams complex type of the SAP Business One Service Layer
Fields
- newCost? decimal - New cost field
- debitCredit? decimal - Debit credit field
- admissionDate? string - Admission date field
- snbAbsEntry? Signed32 - Snb abs entry field
- systemNumber? Signed32 - System number field
- manufactureNumber? string - Manufacture number field
- expirationDate? string - Expiration date field
- lotNumber? string - Lot number field
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 - Material revaluation SNB param field
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 - Material revaluation SNB param field
sap.businessone.inventory: OriginalItem
The OriginalItem complex type of the SAP Business One Service Layer
Fields
- itemCode? string - Item code field
- alternativeItems? AlternativeItem[] - Alternative items field
- itemName? string - Item name field
sap.businessone.inventory: OriginalItemParams
The OriginalItemParams complex type of the SAP Business One Service Layer
Fields
- itemCode? string - Item code field
- itemName? string - Item name field
sap.businessone.inventory: PackagesType
The PackagesType entity of the SAP Business One Service Layer
Fields
- Type? string - Type field
- Code? Signed32 - Code field
- Length1? decimal - Length1 field
- Length1Unit? Signed32 - Length1 unit field
- Length2? decimal - Length2 field
- Length2Unit? Signed32 - Length2 unit field
- Width1? decimal - Width1 field
- Width1Unit? Signed32 - Width1 unit field
- Width2? decimal - Width2 field
- Width2Unit? Signed32 - Width2 unit field
- Height1? decimal - Height1 field
- Height1Unit? Signed32 - Height1 unit field
- Height2? decimal - Height2 field
- Height2Unit? Signed32 - Height2 unit field
- Volume? decimal - Volume field
- VolumeUnit? Signed32 - Volume unit field
- Weight1? decimal - Weight1 field
- Weight1Unit? Signed32 - Weight1 unit field
- Weight2? decimal - Weight2 field
- Weight2Unit? Signed32 - Weight2 unit field
sap.businessone.inventory: PackagesTypesCollectionResponse
A paged collection of PackagesTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? PackagesType[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: PickList
The PickList entity of the SAP Business One Service Layer
Fields
- Absoluteentry? Signed32 - Absoluteentry field
- Name? string - Name field
- OwnerCode? Signed32 - Owner code field
- OwnerName? string - Owner name field
- PickDate? string - Pick date field
- Remarks? string - Remarks field
- Status? BoPickStatus - OData EnumType 'BoPickStatus'. Serialised by the Service Layer as the member name
- ObjectType? string - Object type field
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateQRCodeFrom? string - Create QR code from field
- PickListsLines? PickListsLine[] - Pick lists lines field
sap.businessone.inventory: PickListsCollectionResponse
A paged collection of PickLists entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? PickList[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: PickListsLine
The PickListsLine complex type of the SAP Business One Service Layer
Fields
- AbsoluteEntry? Signed32 - Absolute entry field
- LineNumber? Signed32 - Line number field
- OrderEntry? Signed32 - Order entry field
- OrderRowID? Signed32 - Order row ID field
- PickedQuantity? decimal - Picked quantity field
- PickStatus? BoPickStatus - OData EnumType 'BoPickStatus'. Serialised by the Service Layer as the member name
- ReleasedQuantity? decimal - Released quantity field
- PreviouslyReleasedQuantity? decimal - Previously released quantity field
- BaseObjectType? Signed32 - Base object type field
- SerialNumbers? SerialNumber[] - Serial numbers field
- BatchNumbers? BatchNumber[] - Batch numbers field
- DocumentLinesBinAllocations? DocumentLinesBinAllocation[] - Document lines bin allocations field
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 - Pick list field
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 - Pick list field
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 - Base price list field
- Factor? decimal - Factor field
- PriceListNo? Signed32 - Price list number field
- PriceListName? string - Price list name field
- 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 - Valid from field
- ValidTo? string - Valid to field
- DefaultPrimeCurrency? string - Default prime currency field
- DefaultAdditionalCurrency1? string - Default additional currency1 field
- DefaultAdditionalCurrency2? string - Default additional currency2 field
- RoundingRule? BoRoundingRule - OData EnumType 'BoRoundingRule'. Serialised by the Service Layer as the member name
- FixedAmount? decimal - Fixed amount field
- StockTransfers? StockTransfer[] - Stock transfers field
- PurchaseQuotations? Document[] - Purchase quotations field
- CorrectionInvoiceReversal? Document[] - Correction invoice reversal field
- CorrectionInvoice? Document[] - Correction invoice field
- PurchaseDeliveryNotes? Document[] - Purchase delivery notes field
- CorrectionPurchaseInvoice? Document[] - Correction purchase invoice field
- InventoryGenEntries? Document[] - Inventory gen entries field
- Orders? Document[] - Orders field
- InventoryGenExits? Document[] - Inventory gen exits field
- Drafts? Document[] - Drafts field
- ReturnRequest? Document[] - Return request field
- DeliveryNotes? Document[] - Delivery notes field
- PurchaseInvoices? Document[] - Purchase invoices field
- SelfInvoices? Document[] - Self invoices field
- Invoices? Document[] - Invoices field
- CreditNotes? Document[] - Credit notes field
- PurchaseCreditNotes? Document[] - Purchase credit notes field
- DownPayments? Document[] - Down payments field
- PurchaseDownPayments? Document[] - Purchase down payments field
- PurchaseReturns? Document[] - Purchase returns field
- PurchaseOrders? Document[] - Purchase orders field
- SelfCreditMemos? Document[] - Self credit memos field
- Quotations? Document[] - Quotations field
- Returns? Document[] - Returns field
- SpecialPrices? SpecialPrice[] - Special prices field
- GoodsReturnRequest? Document[] - Goods return request field
- CorrectionPurchaseInvoiceReversal? Document[] - Correction purchase invoice reversal field
- PurchaseRequests? Document[] - Purchase requests field
sap.businessone.inventory: PriceListsCollectionResponse
A paged collection of PriceLists entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? PriceList[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: RelatedDocument
The RelatedDocument complex type of the SAP Business One Service Layer
Fields
- absEnry? Signed32 - Abs enry field
- absEntry? Signed32 - Abs entry field
- uUID? string - U UID field
- docTye? RelatedDocumentTypeEnum - Document tye field
- docType? RelatedDocumentTypeEnum - Document type field
sap.businessone.inventory: SerialNumber
The SerialNumber complex type of the SAP Business One Service Layer
Fields
- ManufacturerSerialNumber? string - Manufacturer serial number field
- InternalSerialNumber? string - Internal serial number field
- ExpiryDate? string - Expiry date field
- ManufactureDate? string - Manufacture date field
- ReceptionDate? string - Reception date field
- WarrantyStart? string - Warranty start field
- WarrantyEnd? string - Warranty end field
- Location? string - Location field
- Notes? string - Notes field
- BatchID? string - Batch ID field
- SystemSerialNumber? Signed32 - System serial number field
- BaseLineNumber? Signed32 - Base line number field
- Quantity? decimal - Quantity field
- TrackingNote? Signed32 - Tracking note field
- TrackingNoteLine? Signed32 - Tracking note line field
- ItemCode? string - Item code field
sap.businessone.inventory: SerialNumberDetail
The SerialNumberDetail entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- MfrSerialNo? string - Mfr serial number field
- SerialNumber? string - Serial number field
- LotNumber? string - Lot number field
- SystemNumber? Signed32 - System number field
- AdmissionDate? string - Admission date field
- ManufacturingDate? string - Manufacturing date field
- ExpirationDate? string - Expiration date field
- MfrWarrantyStart? string - Mfr warranty start field
- MFrWarrantyEnd? string - M fr warranty end field
- Location? string - Location field
- Details? string - Details field
- 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 - Odata metadata field
- value? SerialNumberDetail[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: ShippingType
The ShippingType entity of the SAP Business One Service Layer
Fields
- Code? Signed32 - Code field
- Name? string - Name field
- Website? string - Website field
- PurchaseQuotations? Document[] - Purchase quotations field
- Items? Item[] - Items field
- CorrectionInvoiceReversal? Document[] - Correction invoice reversal field
- CorrectionInvoice? Document[] - Correction invoice field
- PurchaseDeliveryNotes? Document[] - Purchase delivery notes field
- CorrectionPurchaseInvoice? Document[] - Correction purchase invoice field
- InventoryGenEntries? Document[] - Inventory gen entries field
- Orders? Document[] - Orders field
- InventoryGenExits? Document[] - Inventory gen exits field
- Drafts? Document[] - Drafts field
- ReturnRequest? Document[] - Return request field
- DeliveryNotes? Document[] - Delivery notes field
- PurchaseInvoices? Document[] - Purchase invoices field
- SelfInvoices? Document[] - Self invoices field
- Invoices? Document[] - Invoices field
- CreditNotes? Document[] - Credit notes field
- PurchaseCreditNotes? Document[] - Purchase credit notes field
- DownPayments? Document[] - Down payments field
- PurchaseDownPayments? Document[] - Purchase down payments field
- PurchaseReturns? Document[] - Purchase returns field
- PurchaseOrders? Document[] - Purchase orders field
- SelfCreditMemos? Document[] - Self credit memos field
- Quotations? Document[] - Quotations field
- Returns? Document[] - Returns field
- GoodsReturnRequest? Document[] - Goods return request field
- CorrectionPurchaseInvoiceReversal? Document[] - Correction purchase invoice reversal field
- PurchaseRequests? Document[] - Purchase requests field
sap.businessone.inventory: ShippingTypesCollectionResponse
A paged collection of ShippingTypes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ShippingType[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: SNBLines
The SNBLines complex type of the SAP Business One Service Layer
Fields
- newCost? decimal - New cost field
- debitCredit? decimal - Debit credit field
- admissionDate? string - Admission date field
- snbAbsEntry? Signed32 - Snb abs entry field
- systemNumber? Signed32 - System number field
- manufactureNumber? string - Manufacture number field
- expirationDate? string - Expiration date field
- lotNumber? string - Lot number field
- baseLine? Signed32 - Base line field
sap.businessone.inventory: SpecialPrice
The SpecialPrice entity of the SAP Business One Service Layer
Fields
- ItemCode? string - Item code field
- CardCode? string - Card code field
- Price? decimal - Price field
- Currency? string - Currency field
- DiscountPercent? decimal - Discount percent field
- PriceListNum? Signed32 - Price list number field
- 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 - Valid from field
- ValidTo? string - Valid to field
- SpecialPriceDataAreas? SpecialPriceDataArea[] - Special price data areas field
- 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 - Price currency field
- AutoUpdate? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Dateto? string - Dateto field
- Discount? decimal - Discount field
- SpecialPrice? decimal - Special price field
- DateFrom? string - Date from field
- BPCode? string - Business partner code field
- PriceListNo? Signed32 - Price list number field
- ItemNo? string - Item number field
- RowNumber? Signed32 - Row number field
- SpecialPriceQuantityAreas? SpecialPriceQuantityArea[] - Special price quantity areas field
sap.businessone.inventory: SpecialPriceQuantityArea
The SpecialPriceQuantityArea complex type of the SAP Business One Service Layer
Fields
- Quantity? decimal - Quantity field
- SPDARowNumber? Signed32 - SPDA row number field
- SpecialPrice? decimal - Special price field
- ItemNo? string - Item number field
- BPCode? string - Business partner code field
- RowNumber? Signed32 - Row number field
- PriceCurrency? string - Price currency field
- Discountin? decimal - Discountin field
- UoMEntry? Signed32 - Uo m entry field
sap.businessone.inventory: SpecialPricesCollectionResponse
A paged collection of SpecialPrices entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SpecialPrice[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: StockTaking
The StockTaking entity of the SAP Business One Service Layer
Fields
- ItemCode? string - Item code field
- WarehouseCode? string - Warehouse code field
- Counted? decimal - Counted field
- 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 - Odata metadata field
- value? StockTaking[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: StockTransfer
The StockTransfer entity of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- Series? Signed32 - Series field
- Printed? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- DocDate? string - Document date field
- DueDate? string - Due date field
- CardCode? string - Card code field
- CardName? string - Card name field
- Address? string - Address field
- Reference1? string - Reference1 field
- Reference2? string - Reference2 field
- Comments? string - Comments field
- JournalMemo? string - Journal memo field
- PriceList? Signed32 - Price list field
- SalesPersonCode? Signed32 - Sales person code field
- FromWarehouse? string - From warehouse field
- ToWarehouse? string - To warehouse field
- CreationDate? string - Creation date field
- UpdateDate? string - Update date field
- FinancialPeriod? Signed32 - Financial period field
- TransNum? Signed32 - Trans number field
- DocNum? Signed32 - Document number field
- TaxDate? string - Tax date field
- ContactPerson? Signed32 - Contact person field
- FolioPrefixString? string - Folio prefix string field
- FolioNumber? Signed32 - Folio number field
- DocObjectCode? string - Document object code field
- AuthorizationStatus? StockTransferAuthorizationStatusEnum - OData EnumType 'StockTransferAuthorizationStatusEnum'. Serialised by the Service Layer as the member name
- BPLID? Signed32 - BPLID field
- BPLName? string - BPL name field
- VATRegNum? string - VAT reg number field
- AuthorizationCode? string - Authorization code field
- StartDeliveryDate? string - Start delivery date field
- StartDeliveryTime? string - Start delivery time field
- EndDeliveryDate? string - End delivery date field
- EndDeliveryTime? string - End delivery time field
- VehiclePlate? string - Vehicle plate field
- ATDocumentType? string - AT document type field
- EDocExportFormat? Signed32 - E document export format field
- ElecCommStatus? ElecCommStatusEnum - OData EnumType 'ElecCommStatusEnum'. Serialised by the Service Layer as the member name
- ElecCommMessage? string - Elec comm message field
- PointOfIssueCode? string - Point of issue code field
- Letter? FolioLetterEnum - OData EnumType 'FolioLetterEnum'. Serialised by the Service Layer as the member name
- FolioNumberFrom? Signed32 - Folio number from field
- FolioNumberTo? Signed32 - Folio number to field
- AttachmentEntry? Signed32 - Attachment entry field
- DocumentStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- ShipToCode? string - Ship to code field
- SAPPassport? string - SAP passport field
- LastPageFolioNumber? Signed32 - Last page folio number field
- DutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CreateQRCodeFrom? string - Create QR code from field
- CopyDutyStatus? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- StockTransfer_ApprovalRequests? StockTransferApprovalRequest[] - Stock transfer approval requests field
- ElectronicProtocols? ElectronicProtocol[] - Electronic protocols field
- StockTransferLines? StockTransferLine[] - Stock transfer lines field
- StockTransferTaxExtension? StockTransferTaxExtension - The
StockTransferTaxExtensioncomplex type of the SAP Business One Service Layer
- DocumentReferences? DocumentReference[] - Document references field
- 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 - Active for update field
- approvalTemplatesID? Signed32 - Approval templates ID field
- remarks? string - Remarks field
- approvalTemplatesName? string - Approval templates name field
sap.businessone.inventory: StockTransferDraftsCollectionResponse
A paged collection of StockTransferDrafts entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? StockTransfer[] - Value field
- odataNextLink? string - Odata next link field
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 - Stock transfer field
sap.businessone.inventory: StockTransferLine
The StockTransferLine complex type of the SAP Business One Service Layer
Fields
- LineNum? Signed32 - Line number field
- DocEntry? Signed32 - Document entry field
- ItemCode? string - Item code field
- ItemDescription? string - Item description field
- Quantity? decimal - Quantity field
- Price? decimal - Price field
- Currency? string - Currency field
- Rate? decimal - Rate field
- DiscountPercent? decimal - Discount percent field
- VendorNum? string - Vendor number field
- SerialNumber? string - Serial number field
- WarehouseCode? string - Warehouse code field
- FromWarehouseCode? string - From warehouse code field
- ProjectCode? string - Project code field
- Factor? decimal - Factor field
- Factor2? decimal - Factor2 field
- Factor3? decimal - Factor3 field
- Factor4? decimal - Factor4 field
- DistributionRule? string - Distribution rule field
- DistributionRule2? string - Distribution rule2 field
- DistributionRule3? string - Distribution rule3 field
- DistributionRule4? string - Distribution rule4 field
- DistributionRule5? string - Distribution rule5 field
- UseBaseUnits? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- MeasureUnit? string - Measure unit field
- UnitsOfMeasurment? decimal - Units of measurment field
- BaseType? InvBaseDocTypeEnum - OData EnumType 'InvBaseDocTypeEnum'. Serialised by the Service Layer as the member name
- BaseLine? Signed32 - Base line field
- BaseEntry? Signed32 - Base entry field
- UnitPrice? decimal - Unit price field
- UoMEntry? Signed32 - Uo m entry field
- UoMCode? string - Uo m code field
- InventoryQuantity? decimal - Inventory quantity field
- RemainingOpenQuantity? decimal - Remaining open quantity field
- RemainingOpenInventoryQuantity? decimal - Remaining open inventory quantity field
- LineStatus? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- VatGroup? string - VAT group field
- AdditionalIdentifier? string - Additional identifier field
- WeightOfRecycledPlastic? decimal - Weight of recycled plastic field
- PlasticPackageExemptionReason? string - Plastic package exemption reason field
- SerialNumbers? SerialNumber[] - Serial numbers field
- BatchNumbers? BatchNumber[] - Batch numbers field
- CCDNumbers? CCDNumber[] - CCD numbers field
- StockTransferLinesBinAllocations? StockTransferLinesBinAllocation[] - Stock transfer lines bin allocations field
- DocLinePickLists? DocLinePickList[] - Document line pick lists field
sap.businessone.inventory: StockTransferLinesBinAllocation
The StockTransferLinesBinAllocation complex type of the SAP Business One Service Layer
Fields
- BinAbsEntry? Signed32 - Bin abs entry field
- Quantity? decimal - Quantity field
- AllowNegativeQuantity? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- SerialAndBatchNumbersBaseLine? Signed32 - Serial and batch numbers base line field
- BinActionType? BinActionTypeEnum - OData EnumType 'BinActionTypeEnum'. Serialised by the Service Layer as the member name
- BaseLineNumber? Signed32 - Base line number field
sap.businessone.inventory: StockTransfersCollectionResponse
A paged collection of StockTransfers entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? StockTransfer[] - Value field
- odataNextLink? string - Odata next link field
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 - Stock transfer field
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 - Form number field
- TransactionCategory? string - Transaction category field
sap.businessone.inventory: TaxExtension
The TaxExtension complex type of the SAP Business One Service Layer
Fields
- buildingS? string - Building s field
- taxId3? string - Tax id3 field
- taxId2? string - Tax id2 field
- taxId5? string - Tax id5 field
- taxId4? string - Tax id4 field
- packQuantity? Signed32 - Pack quantity field
- taxId1? string - Tax id1 field
- taxId0? string - Tax id0 field
- vehicle? string - Vehicle field
- portCode? string - Port code field
- taxId7? string - Tax id7 field
- buildingB? string - Building b field
- taxId6? string - Tax id6 field
- taxId9? string - Tax id9 field
- taxId8? string - Tax id8 field
- carrier? string - Carrier field
- shipUnitNo? Signed32 - Ship unit number field
- streetS? string - Street s field
- differentialOfTaxRate? Signed32 - Differential of tax rate field
- zipCodeS? string - Zip code s field
- countryB? string - Country b field
- grossWeight? decimal - Gross weight field
- globalLocationNumberB? string - Global location number b field
- packDescription? string - Pack description field
- mainUsage? Signed32 - Main usage field
- docEntry? Signed32 - Document entry field
- brand? string - Brand field
- stateS? string - State s field
- countryS? string - Country s field
- blockB? string - Block b field
- state? string - State field
- globalLocationNumberS? string - Global location number s field
- importOrExportType? ImportOrExportTypeEnum - Import or export type field
- vehicleState? string - Vehicle state field
- blockS? string - Block s field
- stateB? string - State b field
- cityS? string - City s field
- county? string - County field
- boEValue? decimal - Bo e value field
- nFRef? string - N f reference field
- countyB? string - County b field
- billOfEntryNo? string - Bill of entry number field
- countyS? string - County s field
- taxId14? string - Tax id14 field
- taxId13? string - Tax id13 field
- claimRefund? BoYesNoEnum - Claim refund field
- taxId12? string - Tax id12 field
- netWeight? decimal - Net weight field
- originalBillOfEntryDate? string - Original bill of entry date field
- billOfEntryDate? string - Bill of entry date field
- zipCodeB? string - Zip code b field
- importOrExport? BoYesNoEnum - Import or export field
- originalBillOfEntryNo? string - Original bill of entry number field
- streetB? string - Street b field
- cityB? string - City b field
- isIGSTAccount? BoYesNoEnum - Is IGST account field
- incoterms? string - Incoterms field
sap.businessone.inventory: TeamCounter
The TeamCounter complex type of the SAP Business One Service Layer
Fields
- counterType? CounterTypeEnum - Counter type field
- counterName? string - Counter name field
- counterNumber? Signed32 - Counter number field
- counterVisualOrder? Signed32 - Counter visual order field
- documentEntry? Signed32 - Document entry field
- counterID? Signed32 - Counter ID field
sap.businessone.inventory: TrackingNote
The TrackingNote entity of the SAP Business One Service Layer
Fields
- cCDNumber? string - C code number field
- isDirectImport? BoYesNoEnum - Is direct import field
- trackingNoteItemCollection? TrackingNoteItem[] - Tracking note item collection field
- trackingNoteNumber? Signed32 - Tracking note number field
- countryOfOrigin? string - Country of origin field
- trackingNoteBrokerCollection? TrackingNoteBroker[] - Tracking note broker collection field
- customsTerminal? string - Customs terminal field
- date? string - Date field
sap.businessone.inventory: TrackingNoteBroker
The TrackingNoteBroker complex type of the SAP Business One Service Layer
Fields
- agreementNumber? Signed32 - Agreement number field
- trackingNoteNumber? Signed32 - Tracking note number field
- trackingNoteLineNumber? Signed32 - Tracking note line number field
- bPCode? string - B p code field
sap.businessone.inventory: TrackingNoteItem
The TrackingNoteItem complex type of the SAP Business One Service Layer
Fields
- itemCCDNumber? string - Item CCD number field
- itemCode? string - Item code field
- customsGroupCode? Signed32 - Customs group code field
- trackingNoteNumber? Signed32 - Tracking note number field
- accumulatedAPQuantity? decimal - Accumulated accounts payable quantity field
- accumulatedRelocatedQuantity? decimal - Accumulated relocated quantity field
- countryOfOrigin? string - Country of origin field
- trackingNoteLineNumber? Signed32 - Tracking note line number field
- quantity? decimal - Quantity field
- accumulatedARQuantity? decimal - Accumulated accounts receivable quantity field
sap.businessone.inventory: TrackingNoteParams
The TrackingNoteParams complex type of the SAP Business One Service Layer
Fields
- cCDNumber? string - C code number field
- trackingNoteNumber? Signed32 - Tracking note number field
sap.businessone.inventory: TrackingNotesCollectionResponse
A paged collection of TrackingNotes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? TrackingNote[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: UnitOfMeasurement
The UnitOfMeasurement entity of the SAP Business One Service Layer
Fields
- AbsEntry? Signed32 - Abs entry field
- Code? string - Code field
- Name? string - Name field
- Length1? decimal - Length1 field
- Length1Unit? Signed32 - Length1 unit field
- Length2? decimal - Length2 field
- Length2Unit? Signed32 - Length2 unit field
- Width1? decimal - Width1 field
- Width1Unit? Signed32 - Width1 unit field
- Width2? decimal - Width2 field
- Width2Unit? Signed32 - Width2 unit field
- Height1? decimal - Height1 field
- Height1Unit? Signed32 - Height1 unit field
- Height2? decimal - Height2 field
- Height2Unit? Signed32 - Height2 unit field
- Volume? decimal - Volume field
- VolumeUnit? Signed32 - Volume unit field
- Weight1? decimal - Weight1 field
- Weight1Unit? Signed32 - Weight1 unit field
- Weight2? decimal - Weight2 field
- Weight2Unit? Signed32 - Weight2 unit field
- InternationalSymbol? string - International symbol field
- EWBUnitEntry? Signed32 - EWB unit entry field
- PPWeight1? decimal - PP weight1 field
- PPWe1Unit? Signed32 - PP we1 unit field
- PPWeight2? decimal - PP weight2 field
- PPWe2Unit? Signed32 - PP we2 unit field
- ItemGroups? ItemGroups[] - Item groups field
- Items? Item[] - Items field
- BinLocations? BinLocation[] - Bin locations field
- BarCodes? BarCode[] - Bar codes field
- UnitOfMeasurementGroups? UnitOfMeasurementGroup[] - Unit of measurement groups field
sap.businessone.inventory: UnitOfMeasurementGroup
The UnitOfMeasurementGroup entity of the SAP Business One Service Layer
Fields
- itemGroups? ItemGroups[] - Item groups field
- unitOfMeasurement? UnitOfMeasurement - Unit of measurement field
- uoMGroupDefinitionCollection? UoMGroupDefinition[] - Uo m group definition collection field
- baseUoM? Signed32 - Base uo m field
- binLocations? BinLocation[] - Bin locations field
- items? Item[] - Items field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
- name? string - Name field
sap.businessone.inventory: UnitOfMeasurementGroupParams
The UnitOfMeasurementGroupParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.inventory: UnitOfMeasurementGroupsCollectionResponse
A paged collection of UnitOfMeasurementGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? UnitOfMeasurementGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: UnitOfMeasurementParams
The UnitOfMeasurementParams complex type of the SAP Business One Service Layer
Fields
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.inventory: UnitOfMeasurementsCollectionResponse
A paged collection of UnitOfMeasurements entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? UnitOfMeasurement[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: UoMGroupDefinition
The UoMGroupDefinition complex type of the SAP Business One Service Layer
Fields
- weightFactor? Signed32 - Weight factor field
- alternateUoM? Signed32 - Alternate uo m field
- baseWgtFtr? Signed32 - Base wgt ftr field
- alternateQuantity? decimal - Alternate quantity field
- active? BoYesNoEnum - Active field
- udfFactor? Signed32 - Udf factor field
- baseQuantity? decimal - Base quantity field
- baseUdfFtr? Signed32 - Base udf ftr field
sap.businessone.inventory: UoMPrice
The UoMPrice complex type of the SAP Business One Service Layer
Fields
- PriceList? Signed32 - Price list field
- UoMEntry? Signed32 - Uo m entry field
- ReduceBy? decimal - Reduce by field
- Price? decimal - Price field
- Currency? string - Currency field
- AdditionalReduceBy1? decimal - Additional reduce by1 field
- AdditionalPrice1? decimal - Additional price1 field
- AdditionalCurrency1? string - Additional currency1 field
- AdditionalReduceBy2? decimal - Additional reduce by2 field
- AdditionalPrice2? decimal - Additional price2 field
- AdditionalCurrency2? string - Additional currency2 field
- 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 - Street field
- StockInflationOffsetAccount? string - Stock inflation offset account field
- ZipCode? string - Zip code field
- DecreasingAccount? string - Decreasing account field
- PurchaseAccount? string - Purchase account field
- EURevenuesAccount? string - EU revenues account field
- ReturningAccount? string - Returning account field
- ShippedGoodsAccount? string - Shipped goods account field
- StockInflationAdjustAccount? string - Stock inflation adjust account field
- AllowUseTax? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- CostInflationAccount? string - Cost inflation account field
- ForeignExpensesAccount? string - Foreign expenses account field
- EUExpensesAccount? string - EU expenses account field
- CostInflationOffsetAccount? string - Cost inflation offset account field
- ExpensesClearingAccount? string - Expenses clearing account field
- PurchaseReturningAccount? string - Purchase returning account field
- VATInRevenueAccount? string - VAT in revenue account field
- FederalTaxID? string - Federal tax ID field
- Location? Signed32 - Location field
- Block? string - Block field
- ExpenseAccount? string - Expense account field
- DecreaseGLAccount? string - Decrease general ledger account field
- RevenuesAccount? string - Revenues account field
- TaxGroup? string - Tax group field
- ExemptRevenuesAccount? string - Exempt revenues account field
- PurchaseOffsetAccount? string - Purchase offset account field
- CostOfGoodsSold? string - Cost of goods sold field
- WarehouseCode? string - Warehouse code field
- State? string - State field
- City? string - City field
- PriceDifferencesAccount? string - Price differences account field
- VarianceAccount? string - Variance account field
- Country? string - Country field
- IncreaseGLAccount? string - Increase general ledger account field
- ExchangeRateDifferencesAccount? string - Exchange rate differences account field
- WIPMaterialAccount? string - WIP material account field
- WarehouseName? string - Warehouse name field
- DropShip? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WIPMaterialVarianceAccount? string - WIP material variance account field
- TransfersAcc? string - Transfers acc field
- InternalKey? Signed32 - Internal key field
- ForeignRevenuesAcc? string - Foreign revenues acc field
- BuildingFloorRoom? string - Building floor room field
- County? string - County field
- Nettable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- IncreasingAcc? string - Increasing acc field
- ExpenseOffsetingAct? string - Expense offseting act field
- GoodsClearingAcc? string - Goods clearing acc field
- StockAccount? string - Stock account field
- BusinessPlaceID? Signed32 - Business place ID field
- PurchaseCreditAcc? string - Purchase credit acc field
- EUPurchaseCreditAcc? string - EU purchase credit acc field
- ForeignPurchaseCreditAcc? string - Foreign purchase credit acc field
- SalesCreditAcc? string - Sales credit acc field
- SalesCreditEUAcc? string - Sales credit EU acc field
- ExemptedCredits? string - Exempted credits field
- SalesCreditForeignAcc? string - Sales credit foreign acc field
- NegativeInventoryAdjustmentAccount? string - Negative inventory adjustment account field
- WHShipToName? string - Warehouse ship to name field
- Excisable? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- WHIncomingCenvatAccount? string - Warehouse incoming cenvat account field
- WHOutgoingCenvatAccount? string - Warehouse outgoing cenvat account field
- StockInTransitAccount? string - Stock in transit account field
- WipOffsetProfitAndLossAccount? string - Wip offset profit and loss account field
- InventoryOffsetProfitAndLossAccount? string - Inventory offset profit and loss account field
- AddressType? string - Address type field
- StreetNo? string - Street number field
- Storekeeper? Signed32 - Storekeeper field
- Shipper? string - Shipper field
- ManageSerialAndBatchNumbers? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- GlobalLocationNumber? string - Global location number field
- EnableBinLocations? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- BinLocCodeSeparator? string - Bin loc code separator field
- DefaultBin? Signed32 - Default bin field
- 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 - Purchase balance account field
- 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 - Legal text field
- AddressName2? string - Address name2 field
- AddressName3? string - Address name3 field
- StockTransfers? StockTransfer[] - Stock transfers field
- WarehouseLocation? WarehouseLocation - The
WarehouseLocationentity of the SAP Business One Service Layer
- BinLocation? BinLocation - The
BinLocationentity of the SAP Business One Service Layer
- BinLocations? BinLocation[] - Bin locations field
- StockTakings? StockTaking[] - Stock takings field
- InventoryTransferRequests? StockTransfer[] - Inventory transfer requests field
- StockTransferDrafts? StockTransfer[] - Stock transfer drafts field
sap.businessone.inventory: WarehouseLocation
The WarehouseLocation entity of the SAP Business One Service Layer
Fields
- Code? Signed32 - Code field
- Name? string - Name field
- LSTVATNumber? string - LSTVAT number field
- CSTNumber? string - CST number field
- ExemptionNumber? string - Exemption number field
- TANNumber? string - TAN number field
- ServiceTaxNumber? string - Service tax number field
- AssesseeType? string - Assessee type field
- CompanyType? string - Company type field
- NatureOfBusiness? string - Nature of business field
- TINNumber? string - TIN number field
- RegistrationType? string - Registration type field
- EccNumber? string - Ecc number field
- CERange? string - CE range field
- CEDivision? string - CE division field
- CECommissionerate? string - CE commissionerate field
- ManufacturerCode? string - Manufacturer code field
- Jurisdiction? string - Jurisdiction field
- Street? string - Street field
- Block? string - Block field
- ZipCode? string - Zip code field
- City? string - City field
- County? string - County field
- Country? string - Country field
- State? string - State field
- PANNumber? string - PAN number field
- CERegisterNumber? string - CE register number field
- BuildingFloorRoom? string - Building floor room field
- GSTIN? string - GSTIN field
- GstType? BoGSTRegnTypeEnum - OData EnumType 'BoGSTRegnTypeEnum'. Serialised by the Service Layer as the member name
- GSTTDS? string - GSTTDS field
- GSTISD? string - GSTISD field
- Warehouses? Warehouse[] - Warehouses field
- Items? Item[] - Items field
sap.businessone.inventory: WarehouseLocationsCollectionResponse
A paged collection of WarehouseLocations entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WarehouseLocation[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: WarehousesCollectionResponse
A paged collection of Warehouses entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Warehouse[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: WarehouseSublevelCode
The WarehouseSublevelCode entity of the SAP Business One Service Layer
Fields
- description? string - Description field
- binLocationField? BinLocationField - Bin location field field
- warehouseSublevel? Signed32 - Warehouse sublevel field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.inventory: WarehouseSublevelCodeParams
The WarehouseSublevelCodeParams complex type of the SAP Business One Service Layer
Fields
- warehouseSublevel? Signed32 - Warehouse sublevel field
- absEntry? Signed32 - Abs entry field
- code? string - Code field
sap.businessone.inventory: WarehouseSublevelCodesCollectionResponse
A paged collection of WarehouseSublevelCodes entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WarehouseSublevelCode[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: WeightMeasure
The WeightMeasure entity of the SAP Business One Service Layer
Fields
- UnitCode? Signed32 - Unit code field
- UnitDisplay? string - Unit display field
- UnitName? string - Unit name field
- UnitWeightinmg? decimal - Unit weightinmg field
- BinLocations? BinLocation[] - Bin locations field
sap.businessone.inventory: WeightMeasuresCollectionResponse
A paged collection of WeightMeasures entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? WeightMeasure[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.inventory: WithholdingTaxData
The WithholdingTaxData complex type of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- RoundingType? string - Rounding type field
- Rate? decimal - Rate field
- Criteria? string - Criteria field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetDocumentType? Signed32 - Target document type field
sap.businessone.inventory: WithholdingTaxDataWTX
The WithholdingTaxDataWTX complex type of the SAP Business One Service Layer
Fields
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- Rate? decimal - Rate field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? string - Base document type field
- WTAbsId? string - Withholding tax abs ID field
- ExemptRate? decimal - Exempt rate field
- BaseNetAmountSys? decimal - Base net amount sys field
- BaseNetAmountFC? decimal - Base net amount foreign currency field
- BaseNetAmount? decimal - Base net amount field
- BaseVatmountSys? decimal - Base vatmount sys field
- BaseVatmountFC? decimal - Base vatmount foreign currency field
- BaseVatmount? decimal - Base vatmount field
- AccumBaseAmountSys? decimal - Accum base amount sys field
- AccumBaseAmountFC? decimal - Accum base amount foreign currency field
- AccumBaseAmount? decimal - Accum base amount field
- AccumWTaxAmountSys? decimal - Accum w tax amount sys field
- AccumWTaxAmountFC? decimal - Accum w tax amount foreign currency field
- AccumWTaxAmount? decimal - Accum w tax amount field
sap.businessone.inventory: WithholdingTaxLine
The WithholdingTaxLine complex type of the SAP Business One Service Layer
Fields
- WTCode? string - Withholding tax code field
- WTAmountSys? decimal - Withholding tax amount sys field
- WTAmountFC? decimal - Withholding tax amount foreign currency field
- WTAmount? decimal - Withholding tax amount field
- WithholdingType? string - Withholding type field
- TaxableAmountinSys? decimal - Taxable amountin sys field
- TaxableAmountFC? decimal - Taxable amount foreign currency field
- TaxableAmount? decimal - Taxable amount field
- RoundingType? string - Rounding type field
- Rate? decimal - Rate field
- Criteria? string - Criteria field
- Category? string - Category field
- BaseType? string - Base type field
- AppliedWTAmountSys? decimal - Applied withholding tax amount sys field
- AppliedWTAmountFC? decimal - Applied withholding tax amount foreign currency field
- AppliedWTAmount? decimal - Applied withholding tax amount field
- GLAccount? string - General ledger account field
- LineNum? Signed32 - Line number field
- BaseDocEntry? Signed32 - Base document entry field
- BaseDocLine? Signed32 - Base document line field
- BaseDocType? Signed32 - Base document type field
- BaseDocumentReference? Signed32 - Base document reference field
- Status? BoStatus - OData EnumType 'BoStatus'. Serialised by the Service Layer as the member name
- TargetAbsEntry? Signed32 - Target abs entry field
- TargetDocumentType? Signed32 - Target document type field
- CSTCodeIncoming? string - CST code incoming field
- CSTCodeOutgoing? string - CST code outgoing field
- Doc1LineNum? Signed32 - Doc1 line number field
Union types
sap.businessone.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: 6 days ago
Version: 1.0.2
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 1
Current verison: 1
Weekly downloads
Keywords
Name/SAP Business One Inventory
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Inventory
ERP
Contributors