sap.businessone.production
Module sap.businessone.production
API
Definitions
ballerinax/sap.businessone.production 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 Production & MRP connector provides APIs for the production and MRP objects of SAP Business One: bills of materials, production orders, resources, and forecasts, exposed through the SAP Business One Service Layer (OData).
Key Features
- Manage bills of materials (product trees)
- Create, release, and close production orders
- Maintain resources, capacities, and routing stages
- Work with MRP sales forecasts
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.production connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
import ballerinax/sap.businessone.production;
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 = ?; production:Client b1Client = check new ( {companyDb, username, password}, serviceUrl = serviceUrl );
Step 3: Invoke the connector operation
production:ProductionOrders_CollectionResponse response = check b1Client->productionOrdersList();
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.production: 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
listProductTrees
function listProductTrees(ListProductTreesHeaders headers, *ListProductTreesQueries queries) returns ProductTreesCollectionResponse|errorQuery the ProductTrees collection
Parameters
- headers ListProductTreesHeaders (default {}) - Headers to be sent with the request
- queries *ListProductTreesQueries - Queries to be sent with the request
Return Type
- ProductTreesCollectionResponse|error - A page of entities
createProductTrees
function createProductTrees(ProductTree payload, map<string|string[]> headers) returns ProductTree|errorCreate a new ProductTree
Parameters
- payload ProductTree - Request payload
Return Type
- ProductTree|error - The created entity
getProductTrees
function getProductTrees(string treeCode, map<string|string[]> headers, *GetProductTreesQueries queries) returns ProductTree|errorGet a single ProductTree by key
Parameters
- treeCode string - Key property 'TreeCode' (Edm.String)
- queries *GetProductTreesQueries - Queries to be sent with the request
Return Type
- ProductTree|error - The requested entity
deleteProductTrees
Delete a ProductTree
Parameters
- treeCode string - Key property 'TreeCode' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateProductTrees
function updateProductTrees(string treeCode, ProductTree payload, map<string|string[]> headers) returns error?Partially update a ProductTree (PATCH/MERGE semantics)
Parameters
- treeCode string - Key property 'TreeCode' (Edm.String)
- payload ProductTree - Request payload
Return Type
- error? - Updated. No content returned
listProductionOrders
function listProductionOrders(ListProductionOrdersHeaders headers, *ListProductionOrdersQueries queries) returns ProductionOrdersCollectionResponse|errorQuery the ProductionOrders collection
Parameters
- headers ListProductionOrdersHeaders (default {}) - Headers to be sent with the request
- queries *ListProductionOrdersQueries - Queries to be sent with the request
Return Type
- ProductionOrdersCollectionResponse|error - A page of entities
createProductionOrders
function createProductionOrders(ProductionOrder payload, map<string|string[]> headers) returns ProductionOrder|errorCreate a new ProductionOrder
Parameters
- payload ProductionOrder - Request payload
Return Type
- ProductionOrder|error - The created entity
getProductionOrders
function getProductionOrders(Signed32 absoluteEntry, map<string|string[]> headers, *GetProductionOrdersQueries queries) returns ProductionOrder|errorGet a single ProductionOrder by key
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
- queries *GetProductionOrdersQueries - Queries to be sent with the request
Return Type
- ProductionOrder|error - The requested entity
deleteProductionOrders
function deleteProductionOrders(Signed32 absoluteEntry, map<string|string[]> headers) returns error?Delete a ProductionOrder
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateProductionOrders
function updateProductionOrders(Signed32 absoluteEntry, ProductionOrder payload, map<string|string[]> headers) returns error?Partially update a ProductionOrder (PATCH/MERGE semantics)
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
- payload ProductionOrder - Request payload
Return Type
- error? - Updated. No content returned
productionOrdersCancel
function productionOrdersCancel(Signed32 absoluteEntry, map<string|string[]> headers) returns error?Bound action 'Cancel' on ProductionOrders (binding type ProductionOrder)
Parameters
- absoluteEntry Signed32 - Key property 'AbsoluteEntry' (Edm.Int32)
Return Type
- error? - Success. No content returned
listResourceCapacities
function listResourceCapacities(ListResourceCapacitiesHeaders headers, *ListResourceCapacitiesQueries queries) returns ResourceCapacitiesCollectionResponse|errorQuery the ResourceCapacities collection
Parameters
- headers ListResourceCapacitiesHeaders (default {}) - Headers to be sent with the request
- queries *ListResourceCapacitiesQueries - Queries to be sent with the request
Return Type
- ResourceCapacitiesCollectionResponse|error - A page of entities
createResourceCapacities
function createResourceCapacities(ResourceCapacity payload, map<string|string[]> headers) returns ResourceCapacity|errorCreate a new ResourceCapacity
Parameters
- payload ResourceCapacity - Request payload
Return Type
- ResourceCapacity|error - The created entity
getResourceCapacities
function getResourceCapacities(Signed32 id, map<string|string[]> headers, *GetResourceCapacitiesQueries queries) returns ResourceCapacity|errorGet a single ResourceCapacity by key
Parameters
- id Signed32 - Key property 'Id' (Edm.Int32)
- queries *GetResourceCapacitiesQueries - Queries to be sent with the request
Return Type
- ResourceCapacity|error - The requested entity
deleteResourceCapacities
Delete a ResourceCapacity
Parameters
- id Signed32 - Key property 'Id' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateResourceCapacities
function updateResourceCapacities(Signed32 id, ResourceCapacity payload, map<string|string[]> headers) returns error?Partially update a ResourceCapacity (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
resourceCapacitiesServiceGetList
function resourceCapacitiesServiceGetList(map<string|string[]> headers) returns inline_response_200|errorGet list
Return Type
- inline_response_200|error - Function result
resourceCapacitiesServiceGetListWithFilter
function resourceCapacitiesServiceGetListWithFilter(ResourceCapacitiesService_GetListWithFilter_body payload, map<string|string[]> headers) returns inline_response_200_1|errorGet list with filter
Parameters
- payload ResourceCapacitiesService_GetListWithFilter_body - Request payload
Return Type
- inline_response_200_1|error - Function result
listResourceGroups
function listResourceGroups(ListResourceGroupsHeaders headers, *ListResourceGroupsQueries queries) returns ResourceGroupsCollectionResponse|errorQuery the ResourceGroups collection
Parameters
- headers ListResourceGroupsHeaders (default {}) - Headers to be sent with the request
- queries *ListResourceGroupsQueries - Queries to be sent with the request
Return Type
- ResourceGroupsCollectionResponse|error - A page of entities
createResourceGroups
function createResourceGroups(ResourceGroup payload, map<string|string[]> headers) returns ResourceGroup|errorCreate a new ResourceGroup
Parameters
- payload ResourceGroup - Request payload
Return Type
- ResourceGroup|error - The created entity
getResourceGroups
function getResourceGroups(Signed32 code, map<string|string[]> headers, *GetResourceGroupsQueries queries) returns ResourceGroup|errorGet a single ResourceGroup by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetResourceGroupsQueries - Queries to be sent with the request
Return Type
- ResourceGroup|error - The requested entity
deleteResourceGroups
Delete a ResourceGroup
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateResourceGroups
function updateResourceGroups(Signed32 code, ResourceGroup payload, map<string|string[]> headers) returns error?Partially update a ResourceGroup (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
resourceGroupsServiceGetList
function resourceGroupsServiceGetList(map<string|string[]> headers) returns inline_response_200_2|errorGet list
Return Type
- inline_response_200_2|error - Function result
listResourceProperties
function listResourceProperties(ListResourcePropertiesHeaders headers, *ListResourcePropertiesQueries queries) returns ResourcePropertiesCollectionResponse|errorQuery the ResourceProperties collection
Parameters
- headers ListResourcePropertiesHeaders (default {}) - Headers to be sent with the request
- queries *ListResourcePropertiesQueries - Queries to be sent with the request
Return Type
- ResourcePropertiesCollectionResponse|error - A page of entities
createResourceProperties
function createResourceProperties(ResourceProperty payload, map<string|string[]> headers) returns ResourceProperty|errorCreate a new ResourceProperty
Parameters
- payload ResourceProperty - Request payload
Return Type
- ResourceProperty|error - The created entity
getResourceProperties
function getResourceProperties(Signed32 code, map<string|string[]> headers, *GetResourcePropertiesQueries queries) returns ResourceProperty|errorGet a single ResourceProperty by key
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
- queries *GetResourcePropertiesQueries - Queries to be sent with the request
Return Type
- ResourceProperty|error - The requested entity
deleteResourceProperties
Delete a ResourceProperty
Parameters
- code Signed32 - Key property 'Code' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateResourceProperties
function updateResourceProperties(Signed32 code, ResourceProperty payload, map<string|string[]> headers) returns error?Partially update a ResourceProperty (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
resourcePropertiesServiceGetList
function resourcePropertiesServiceGetList(map<string|string[]> headers) returns inline_response_200_3|errorGet list
Return Type
- inline_response_200_3|error - Function result
listResources
function listResources(ListResourcesHeaders headers, *ListResourcesQueries queries) returns ResourcesCollectionResponse|errorQuery the Resources collection
Parameters
- headers ListResourcesHeaders (default {}) - Headers to be sent with the request
- queries *ListResourcesQueries - Queries to be sent with the request
Return Type
- ResourcesCollectionResponse|error - A page of entities
createResources
Create a new Resource
Parameters
- payload Resource - Request payload
getResources
function getResources(string code, map<string|string[]> headers, *GetResourcesQueries queries) returns Resource|errorGet a single Resource by key
Parameters
- code string - Key property 'Code' (Edm.String)
- queries *GetResourcesQueries - Queries to be sent with the request
deleteResources
Delete a Resource
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Deleted. No content returned
updateResources
function updateResources(string code, Resource payload, map<string|string[]> headers) returns error?Partially update a Resource (PATCH/MERGE semantics)
Return Type
- error? - Updated. No content returned
resourcesCreateLinkedItem
Bound action 'CreateLinkedItem' on Resources (binding type Resource)
Parameters
- code string - Key property 'Code' (Edm.String)
Return Type
- error? - Success. No content returned
resourcesServiceGetList
function resourcesServiceGetList(map<string|string[]> headers) returns inline_response_200_4|errorGet list
Return Type
- inline_response_200_4|error - Function result
listRouteStages
function listRouteStages(ListRouteStagesHeaders headers, *ListRouteStagesQueries queries) returns RouteStagesCollectionResponse|errorQuery the RouteStages collection
Parameters
- headers ListRouteStagesHeaders (default {}) - Headers to be sent with the request
- queries *ListRouteStagesQueries - Queries to be sent with the request
Return Type
- RouteStagesCollectionResponse|error - A page of entities
createRouteStages
function createRouteStages(RouteStage payload, map<string|string[]> headers) returns RouteStage|errorCreate a new RouteStage
Parameters
- payload RouteStage - Request payload
Return Type
- RouteStage|error - The created entity
getRouteStages
function getRouteStages(Signed32 internalNumber, map<string|string[]> headers, *GetRouteStagesQueries queries) returns RouteStage|errorGet a single RouteStage by key
Parameters
- internalNumber Signed32 - Key property 'InternalNumber' (Edm.Int32)
- queries *GetRouteStagesQueries - Queries to be sent with the request
Return Type
- RouteStage|error - The requested entity
deleteRouteStages
Delete a RouteStage
Parameters
- internalNumber Signed32 - Key property 'InternalNumber' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateRouteStages
function updateRouteStages(Signed32 internalNumber, RouteStage payload, map<string|string[]> headers) returns error?Partially update a RouteStage (PATCH/MERGE semantics)
Parameters
- internalNumber Signed32 - Key property 'InternalNumber' (Edm.Int32)
- payload RouteStage - Request payload
Return Type
- error? - Updated. No content returned
routeStagesServiceGetList
function routeStagesServiceGetList(map<string|string[]> headers) returns inline_response_200_5|errorGet list
Return Type
- inline_response_200_5|error - Function result
routingDateCalculationServiceCalculate
function routingDateCalculationServiceCalculate(RoutingDateCalculationService_Calculate_body payload, map<string|string[]> headers) returns RoutingDateCalculationOutput|errorCalculate
Parameters
- payload RoutingDateCalculationService_Calculate_body - Request payload
Return Type
- RoutingDateCalculationOutput|error - Function result
listSalesForecast
function listSalesForecast(ListSalesForecastHeaders headers, *ListSalesForecastQueries queries) returns SalesForecastCollectionResponse|errorQuery the SalesForecast collection
Parameters
- headers ListSalesForecastHeaders (default {}) - Headers to be sent with the request
- queries *ListSalesForecastQueries - Queries to be sent with the request
Return Type
- SalesForecastCollectionResponse|error - A page of entities
createSalesForecast
function createSalesForecast(SalesForecast payload, map<string|string[]> headers) returns SalesForecast|errorCreate a new SalesForecast
Parameters
- payload SalesForecast - Request payload
Return Type
- SalesForecast|error - The created entity
getSalesForecast
function getSalesForecast(Signed32 numerator, map<string|string[]> headers, *GetSalesForecastQueries queries) returns SalesForecast|errorGet a single SalesForecast by key
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- queries *GetSalesForecastQueries - Queries to be sent with the request
Return Type
- SalesForecast|error - The requested entity
deleteSalesForecast
Delete a SalesForecast
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
Return Type
- error? - Deleted. No content returned
updateSalesForecast
function updateSalesForecast(Signed32 numerator, SalesForecast payload, map<string|string[]> headers) returns error?Partially update a SalesForecast (PATCH/MERGE semantics)
Parameters
- numerator Signed32 - Key property 'Numerator' (Edm.Int32)
- payload SalesForecast - 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.production: 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.production: 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.production: GetProductionOrdersQueries
Represents the Queries record for the operation: getProductionOrders
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.production: GetProductTreesQueries
Represents the Queries record for the operation: getProductTrees
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.production: GetResourceCapacitiesQueries
Represents the Queries record for the operation: getResourceCapacities
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.production: GetResourceGroupsQueries
Represents the Queries record for the operation: getResourceGroups
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.production: GetResourcePropertiesQueries
Represents the Queries record for the operation: getResourceProperties
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.production: GetResourcesQueries
Represents the Queries record for the operation: getResources
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.production: GetRouteStagesQueries
Represents the Queries record for the operation: getRouteStages
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.production: GetSalesForecastQueries
Represents the Queries record for the operation: getSalesForecast
Fields
- dollarExpand? string - Comma-separated navigation properties to expand
- dollarSelect? string - Comma-separated list of properties to return
sap.businessone.production: inline_response_200
Represents the response payload for the ResourceCapacitiesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ResourceCapacityParams[] - Value field
sap.businessone.production: inline_response_200_1
Represents the response payload for the ResourceCapacitiesService_GetListWithFilter operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ResourceCapacityParams[] - Value field
sap.businessone.production: inline_response_200_2
Represents the response payload for the ResourceGroupsService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ResourceGroupParams[] - Value field
sap.businessone.production: inline_response_200_3
Represents the response payload for the ResourcePropertiesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ResourcePropertyParams[] - Value field
sap.businessone.production: inline_response_200_4
Represents the response payload for the ResourcesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ResourceParams[] - Value field
sap.businessone.production: inline_response_200_5
Represents the response payload for the RouteStagesService_GetList operation of the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? RouteStageParams[] - Value field
sap.businessone.production: ListProductionOrdersHeaders
Represents the Headers record for the operation: listProductionOrders
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.production: ListProductionOrdersQueries
Represents the Queries record for the operation: listProductionOrders
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.production: ListProductTreesHeaders
Represents the Headers record for the operation: listProductTrees
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.production: ListProductTreesQueries
Represents the Queries record for the operation: listProductTrees
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.production: ListResourceCapacitiesHeaders
Represents the Headers record for the operation: listResourceCapacities
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.production: ListResourceCapacitiesQueries
Represents the Queries record for the operation: listResourceCapacities
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.production: ListResourceGroupsHeaders
Represents the Headers record for the operation: listResourceGroups
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.production: ListResourceGroupsQueries
Represents the Queries record for the operation: listResourceGroups
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.production: ListResourcePropertiesHeaders
Represents the Headers record for the operation: listResourceProperties
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.production: ListResourcePropertiesQueries
Represents the Queries record for the operation: listResourceProperties
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.production: ListResourcesHeaders
Represents the Headers record for the operation: listResources
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.production: ListResourcesQueries
Represents the Queries record for the operation: listResources
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.production: ListRouteStagesHeaders
Represents the Headers record for the operation: listRouteStages
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.production: ListRouteStagesQueries
Represents the Queries record for the operation: listRouteStages
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.production: ListSalesForecastHeaders
Represents the Headers record for the operation: listSalesForecast
Fields
- prefer? string - Service Layer paging control, e.g. 'odata.maxpagesize=100'. Use 'odata.maxpagesize=0' to disable server paging
sap.businessone.production: ListSalesForecastQueries
Represents the Queries record for the operation: listSalesForecast
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.production: ProductionOrder
The ProductionOrder entity of the SAP Business One Service Layer
Fields
- AbsoluteEntry? Signed32 - Absolute entry field
- DocumentNumber? Signed32 - Document number field
- Series? Signed32 - Series field
- ItemNo? string - Item number field
- ProductionOrderStatus? BoProductionOrderStatusEnum - OData EnumType 'BoProductionOrderStatusEnum'. Serialised by the Service Layer as the member name
- ProductionOrderType? BoProductionOrderTypeEnum - OData EnumType 'BoProductionOrderTypeEnum'. Serialised by the Service Layer as the member name
- PlannedQuantity? decimal - Planned quantity field
- CompletedQuantity? decimal - Completed quantity field
- RejectedQuantity? decimal - Rejected quantity field
- PostingDate? string - Posting date field
- DueDate? string - Due date field
- ProductionOrderOriginEntry? Signed32 - Production order origin entry field
- ProductionOrderOriginNumber? Signed32 - Production order origin number field
- ProductionOrderOrigin? BoProductionOrderOriginEnum - OData EnumType 'BoProductionOrderOriginEnum'. Serialised by the Service Layer as the member name
- UserSignature? Signed32 - User signature field
- Remarks? string - Remarks field
- ClosingDate? string - Closing date field
- ReleaseDate? string - Release date field
- CustomerCode? string - Customer code field
- Warehouse? string - Warehouse field
- InventoryUOM? string - Inventory unit of measure field
- JournalRemarks? string - Journal remarks field
- TransactionNumber? Signed32 - Transaction number field
- CreationDate? string - Creation date field
- Printed? 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
- UoMEntry? Signed32 - Uo m entry field
- StartDate? string - Start date field
- ProductDescription? string - Product description field
- Priority? Signed32 - Priority field
- RoutingDateCalculation? ResourceAllocationEnum - OData EnumType 'ResourceAllocationEnum'. Serialised by the Service Layer as the member name
- UpdateAllocation? BoUpdateAllocationEnum - OData EnumType 'BoUpdateAllocationEnum'. Serialised by the Service Layer as the member name
- SAPPassport? string - SAP passport field
- AttachmentEntry? Signed32 - Attachment entry field
- PickRemarks? string - Pick remarks field
- ProductionOrderLines? ProductionOrderLine[] - Production order lines field
- ProductionOrdersSalesOrderLines? ProductionOrdersSalesOrderLine[] - Production orders sales order lines field
- ProductionOrdersStages? ProductionOrdersStage[] - Production orders stages field
- ProductionOrdersDocumentReferences? ProductionOrdersDocumentReference[] - Production orders document references field
- ProductTree? ProductTree - The
ProductTreeentity of the SAP Business One Service Layer
sap.businessone.production: ProductionOrderLine
The ProductionOrderLine complex type of the SAP Business One Service Layer
Fields
- DocumentAbsoluteEntry? Signed32 - Document absolute entry field
- LineNumber? Signed32 - Line number field
- ItemNo? string - Item number field
- BaseQuantity? decimal - Base quantity field
- PlannedQuantity? decimal - Planned quantity field
- IssuedQuantity? decimal - Issued quantity field
- ProductionOrderIssueType? BoIssueMethod - OData EnumType 'BoIssueMethod'. Serialised by the Service Layer as the member name
- Warehouse? string - Warehouse field
- VisualOrder? Signed32 - Visual order field
- DistributionRule? string - Distribution rule field
- LocationCode? Signed32 - Location code 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
- UoMEntry? Signed32 - Uo m entry field
- UoMCode? Signed32 - Uo m code field
- WipAccount? string - Wip account field
- ItemType? ProductionItemType - OData EnumType 'ProductionItemType'. Serialised by the Service Layer as the member name
- LineText? string - Line text field
- AdditionalQuantity? decimal - Additional quantity field
- ResourceAllocation? ResourceAllocationEnum - OData EnumType 'ResourceAllocationEnum'. Serialised by the Service Layer as the member name
- StartDate? string - Start date field
- EndDate? string - End date field
- StageID? Signed32 - Stage ID field
- RequiredDays? decimal - Required days field
- ItemName? string - Item name 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
sap.businessone.production: ProductionOrdersCollectionResponse
A paged collection of ProductionOrders entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ProductionOrder[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.production: ProductionOrdersDocumentReference
The ProductionOrdersDocumentReference complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- LineNumber? Signed32 - Line number field
- RefDocEntr? Signed32 - Reference document entr field
- RefDocNum? Signed32 - Reference document number field
- ExtDocNum? string - Ext document number field
- RefObjType? ReferencedObjectTypeEnum - OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
- IssueDate? string - Issue date field
- Remark? string - Remark field
sap.businessone.production: ProductionOrdersSalesOrderLine
The ProductionOrdersSalesOrderLine complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- BaseNumber? Signed32 - Base number field
- BaseAbsEntry? Signed32 - Base abs entry field
- BaseLine? Signed32 - Base line field
sap.businessone.production: ProductionOrdersStage
The ProductionOrdersStage complex type of the SAP Business One Service Layer
Fields
- DocEntry? Signed32 - Document entry field
- StageID? Signed32 - Stage ID field
- SequenceNumber? Signed32 - Sequence number field
- StageEntry? Signed32 - Stage entry field
- Name? string - Name field
- StartDate? string - Start date field
- EndDate? string - End date field
- RequiredDays? decimal - Required days field
- WaitingDays? decimal - Waiting days field
- CalculationProportion? decimal - Calculation proportion field
sap.businessone.production: ProductTree
The ProductTree entity of the SAP Business One Service Layer
Fields
- TreeCode? string - Tree code field
- TreeType? BoItemTreeTypes - OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
- Quantity? decimal - Quantity 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
- PriceList? Signed32 - Price list field
- Warehouse? string - Warehouse field
- PlanAvgProdSize? decimal - Plan avg prod size field
- HideBOMComponentsInPrintout? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ProductDescription? string - Product description field
- AttachmentEntry? Signed32 - Attachment entry field
- ProductTreeLines? ProductTreeLine[] - Product tree lines field
- ProductTreeStages? ProductTreeStage[] - Product tree stages field
- ProductionOrders? ProductionOrder[] - Production orders field
sap.businessone.production: ProductTreeLine
The ProductTreeLine complex type of the SAP Business One Service Layer
Fields
- ItemCode? string - Item code field
- Quantity? decimal - Quantity field
- Warehouse? string - Warehouse field
- Price? decimal - Price field
- Currency? string - Currency field
- IssueMethod? BoIssueMethod - OData EnumType 'BoIssueMethod'. Serialised by the Service Layer as the member name
- InventoryUOM? string - Inventory unit of measure field
- Comment? string - Comment field
- ParentItem? string - Parent item field
- PriceList? Signed32 - Price list 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
- WipAccount? string - Wip account field
- ItemType? ProductionItemType - OData EnumType 'ProductionItemType'. Serialised by the Service Layer as the member name
- LineText? string - Line text field
- AdditionalQuantity? decimal - Additional quantity field
- StageID? Signed32 - Stage ID field
- ChildNum? Signed32 - Child number field
- VisualOrder? Signed32 - Visual order field
- ItemName? string - Item name field
sap.businessone.production: ProductTreesCollectionResponse
A paged collection of ProductTrees entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ProductTree[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.production: ProductTreeStage
The ProductTreeStage complex type of the SAP Business One Service Layer
Fields
- Father? string - Father field
- StageID? Signed32 - Stage ID field
- SequenceNumber? Signed32 - Sequence number field
- StageEntry? Signed32 - Stage entry field
- Name? string - Name field
- WaitingDays? decimal - Waiting days field
sap.businessone.production: Resource
The Resource entity of the SAP Business One Service Layer
Fields
- Code? string - Code field
- VisCode? string - Vis code field
- Series? Signed32 - Series field
- Number? Signed32 - Number field
- CodeBar? string - Code bar field
- Name? string - Name field
- ForeignName? string - Foreign name field
- Type? ResourceTypeEnum - OData EnumType 'ResourceTypeEnum'. Serialised by the Service Layer as the member name
- Group? Signed32 - Group field
- UnitOfMeasure? string - Unit of measure field
- IssueMethod? ResourceIssueMethodEnum - OData EnumType 'ResourceIssueMethodEnum'. Serialised by the Service Layer as the member name
- Cost1? decimal - Cost1 field
- Cost2? decimal - Cost2 field
- Cost3? decimal - Cost3 field
- Cost4? decimal - Cost4 field
- Cost5? decimal - Cost5 field
- Cost6? decimal - Cost6 field
- Cost7? decimal - Cost7 field
- Cost8? decimal - Cost8 field
- Cost9? decimal - Cost9 field
- Cost10? decimal - Cost10 field
- Active? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ActiveFrom? string - Active from field
- ActiveTo? string - Active to field
- Inactive? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- InactiveFrom? string - Inactive from field
- InactiveTo? string - Inactive to field
- DefaultWarehouse? string - Default warehouse field
- Picture? string - Picture field
- Remarks? string - Remarks field
- Property1? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property2? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property3? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property4? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property5? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property6? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property7? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property8? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property9? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property10? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property11? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property12? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property13? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property14? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property15? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property16? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property17? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property18? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property19? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property20? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property21? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property22? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property23? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property24? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property25? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property26? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property27? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property28? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property29? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property30? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property31? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property32? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property33? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property34? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property35? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property36? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property37? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property38? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property39? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property40? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property41? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property42? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property43? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property44? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property45? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property46? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property47? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property48? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property49? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property50? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property51? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property52? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property53? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property54? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property55? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property56? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property57? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property58? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property59? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property60? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property61? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property62? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property63? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- Property64? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ActiveRemarks? string - Active remarks field
- InactiveRemarks? string - Inactive remarks field
- AttachmentEntry? Signed32 - Attachment entry field
- UnitsPerTime? Signed32 - Units per time field
- TimePerUnits? Signed32 - Time per units field
- Allocation? ResourceAllocationEnum - OData EnumType 'ResourceAllocationEnum'. Serialised by the Service Layer as the member name
- LinkedItem? string - Linked item field
- RelevantForSingleRun1? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RelevantForSingleRun2? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RelevantForSingleRun3? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- RelevantForSingleRun4? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
- ResourceWarehouses? ResourceWarehouse[] - Resource warehouses field
- ResourceFixedAssets? ResourceFixedAsset[] - Resource fixed assets field
- ResourceEmployees? ResourceEmployee[] - Resource employees field
- ResourceDailyCapacities? ResourceDailyCapacity[] - Resource daily capacities field
- ResourceCapacities? ResourceCapacity[] - Resource capacities field
- ResourceGroup? ResourceGroup - The
ResourceGroupentity of the SAP Business One Service Layer
sap.businessone.production: ResourceCapacitiesCollectionResponse
A paged collection of ResourceCapacities entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ResourceCapacity[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.production: ResourceCapacitiesService_GetListWithFilter_body
Represents the request payload for the ResourceCapacitiesService_GetListWithFilter operation of the SAP Business One Service Layer
Fields
- resourceCapacityWithFilterParams? ResourceCapacityWithFilterParams - Resource capacity with filter params field
sap.businessone.production: ResourceCapacity
The ResourceCapacity entity of the SAP Business One Service Layer
Fields
- warehouse? string - Warehouse field
- action? ResourceCapacityActionEnum - Action field
- sourceType? ResourceCapacitySourceTypeEnum - Source type field
- singleRunCapacity? decimal - Single run capacity field
- revertedLineNum? Signed32 - Reverted line number field
- capacity? decimal - Capacity field
- sourceEntry? Signed32 - Source entry field
- revertedEntry? Signed32 - Reverted entry field
- baseLineNum? Signed32 - Base line number field
- owningType? ResourceCapacityOwningTypeEnum - Owning type field
- singleRunMemoSource? ResourceCapacityMemoSourceEnum - Single run memo source field
- 'resource? Resource - Resource field
- memoSource? ResourceCapacityMemoSourceEnum - Memo source field
- singleRunMemo? string - Single run memo field
- revertedType? ResourceCapacityRevertedTypeEnum - Reverted type field
- code? string - Code field
- date? string - Date field
- 'type? ResourceCapacityTypeEnum - Type field
- baseType? ResourceCapacityBaseTypeEnum - Base type field
- sourceLineNum? Signed32 - Source line number field
- id? Signed32 - ID field
- owningEntry? Signed32 - Owning entry field
- baseEntry? Signed32 - Base entry field
- owningLineNum? Signed32 - Owning line number field
- memo? string - Memo field
sap.businessone.production: ResourceCapacityParams
The ResourceCapacityParams complex type of the SAP Business One Service Layer
Fields
- revertedEntry? Signed32 - Reverted entry field
- warehouse? string - Warehouse field
- action? ResourceCapacityActionEnum - Action field
- baseLineNum? Signed32 - Base line number field
- sourceType? ResourceCapacitySourceTypeEnum - Source type field
- owningType? ResourceCapacityOwningTypeEnum - Owning type field
- singleRunMemoSource? ResourceCapacityMemoSourceEnum - Single run memo source field
- memoSource? ResourceCapacityMemoSourceEnum - Memo source field
- singleRunMemo? string - Single run memo field
- revertedType? ResourceCapacityRevertedTypeEnum - Reverted type field
- code? string - Code field
- singleRunCapacity? decimal - Single run capacity field
- date? string - Date field
- 'type? ResourceCapacityTypeEnum - Type field
- revertedLineNum? Signed32 - Reverted line number field
- capacity? decimal - Capacity field
- baseType? ResourceCapacityBaseTypeEnum - Base type field
- sourceEntry? Signed32 - Source entry field
- sourceLineNum? Signed32 - Source line number field
- id? Signed32 - ID field
- owningEntry? Signed32 - Owning entry field
- baseEntry? Signed32 - Base entry field
- owningLineNum? Signed32 - Owning line number field
- memo? string - Memo field
sap.businessone.production: ResourceCapacityWithFilterParams
The ResourceCapacityWithFilterParams complex type of the SAP Business One Service Layer
Fields
- warehouse? string - Warehouse field
- 'type? ResourceCapacityTypeEnum - Type field
- code? string - Code field
- date? string - Date field
sap.businessone.production: ResourceDailyCapacity
The ResourceDailyCapacity complex type of the SAP Business One Service Layer
Fields
- factor2? decimal - Factor2 field
- weekday? ResourceDailyCapacityWeekdayEnum - Weekday field
- factor1? decimal - Factor1 field
- remarks? string - Remarks field
- factor4? decimal - Factor4 field
- factor3? decimal - Factor3 field
- total? decimal - Total field
- code? string - Code field
- singleRun? decimal - Single run field
sap.businessone.production: ResourceEmployee
The ResourceEmployee complex type of the SAP Business One Service Layer
Fields
- employee? string - Employee field
- code? string - Code field
sap.businessone.production: ResourceFixedAsset
The ResourceFixedAsset complex type of the SAP Business One Service Layer
Fields
- itemCode? string - Item code field
- code? string - Code field
sap.businessone.production: ResourceGroup
The ResourceGroup entity of the SAP Business One Service Layer
Fields
- cost1? decimal - Cost1 field
- cost2? decimal - Cost2 field
- cost3? decimal - Cost3 field
- costName9? string - Cost name9 field
- cost4? decimal - Cost4 field
- costName8? string - Cost name8 field
- cost9? decimal - Cost9 field
- cost5? decimal - Cost5 field
- cost6? decimal - Cost6 field
- cost7? decimal - Cost7 field
- name? string - Name field
- cost8? decimal - Cost8 field
- numOfUnitsText? string - Number of units text field
- cost10? decimal - Cost10 field
- code? Signed32 - Code field
- 'type? ResourceTypeEnum - Type field
- costName10? string - Cost name10 field
- costName3? string - Cost name3 field
- costName2? string - Cost name2 field
- costName1? string - Cost name1 field
- resources? Resource[] - Resources field
- costName7? string - Cost name7 field
- costName6? string - Cost name6 field
- costName5? string - Cost name5 field
- costName4? string - Cost name4 field
sap.businessone.production: ResourceGroupParams
The ResourceGroupParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.production: ResourceGroupsCollectionResponse
A paged collection of ResourceGroups entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ResourceGroup[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.production: ResourceParams
The ResourceParams complex type of the SAP Business One Service Layer
Fields
- code? string - Code field
sap.businessone.production: ResourcePropertiesCollectionResponse
A paged collection of ResourceProperties entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? ResourceProperty[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.production: ResourceProperty
The ResourceProperty entity of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.production: ResourcePropertyParams
The ResourcePropertyParams complex type of the SAP Business One Service Layer
Fields
- code? Signed32 - Code field
- name? string - Name field
sap.businessone.production: ResourcesCollectionResponse
A paged collection of Resources entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? Resource[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.production: ResourceWarehouse
The ResourceWarehouse complex type of the SAP Business One Service Layer
Fields
- Code? string - Code field
- Warehouse? string - Warehouse field
- Locked? BoYesNoEnum - OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: RouteStage
The RouteStage entity of the SAP Business One Service Layer
Fields
- creationDate? string - Creation date field
- dateOfUpdate? string - Date of update field
- description? string - Description field
- internalNumber? Signed32 - Internal number field
- generationTime? string - Generation time field
- code? string - Code field
sap.businessone.production: RouteStageParams
The RouteStageParams complex type of the SAP Business One Service Layer
Fields
- creationDate? string - Creation date field
- dateOfUpdate? string - Date of update field
- description? string - Description field
- internalNumber? Signed32 - Internal number field
- generationTime? string - Generation time field
- code? string - Code field
sap.businessone.production: RouteStagesCollectionResponse
A paged collection of RouteStages entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? RouteStage[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.production: RoutingDateCalculationInput
The RoutingDateCalculationInput complex type of the SAP Business One Service Layer
Fields
- capacitySum? decimal - Capacity sum field
- resourceCode? string - Resource code field
- firstDateProportion? decimal - First date proportion field
- wORObjAbs? Signed32 - W OR obj abs field
- wORLine? Signed32 - W OR line field
- calculateFromDate? string - Calculate from date field
- warehouseCode? string - Warehouse code field
- calculateUntilDate? string - Calculate until date field
- resourceAlloc? ResourceAllocationEnum - Resource alloc field
sap.businessone.production: RoutingDateCalculationOutput
The RoutingDateCalculationOutput complex type of the SAP Business One Service Layer
Fields
- proportion? decimal - Proportion field
- resultDate? string - Result date field
sap.businessone.production: RoutingDateCalculationService_Calculate_body
Represents the request payload for the RoutingDateCalculationService_Calculate operation of the SAP Business One Service Layer
Fields
- routingDateCalculationInput? RoutingDateCalculationInput - Routing date calculation input field
sap.businessone.production: SalesForecast
The SalesForecast entity of the SAP Business One Service Layer
Fields
- ForecastStartDate? string - Forecast start date field
- ForecastEndDate? string - Forecast end date field
- ForecastCode? string - Forecast code field
- ForecastName? string - Forecast name field
- Numerator? Signed32 - Numerator field
- View? BoForecastViewType - OData EnumType 'BoForecastViewType'. Serialised by the Service Layer as the member name
- SalesForecastLines? SalesForecastLine[] - Sales forecast lines field
sap.businessone.production: SalesForecastCollectionResponse
A paged collection of SalesForecast entities returned by the SAP Business One Service Layer
Fields
- odataMetadata? string - Odata metadata field
- value? SalesForecast[] - Value field
- odataNextLink? string - Odata next link field
sap.businessone.production: SalesForecastLine
The SalesForecastLine complex type of the SAP Business One Service Layer
Fields
- Quantity? decimal - Quantity field
- ForecastedDay? string - Forecasted day field
- ItemNo? string - Item number field
- Warehouse? string - Warehouse field
sap.businessone.production: 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
Union types
sap.businessone.production: ResourceTypeEnum
ResourceTypeEnum
OData EnumType 'ResourceTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: BoYesNoEnum
BoYesNoEnum
OData EnumType 'BoYesNoEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceCapacityOwningTypeEnum
ResourceCapacityOwningTypeEnum
OData EnumType 'ResourceCapacityOwningTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: BoUpdateAllocationEnum
BoUpdateAllocationEnum
OData EnumType 'BoUpdateAllocationEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: BoForecastViewType
BoForecastViewType
OData EnumType 'BoForecastViewType'. Serialised by the Service Layer as the member name
sap.businessone.production: ProductionItemType
ProductionItemType
OData EnumType 'ProductionItemType'. Serialised by the Service Layer as the member name
sap.businessone.production: BoProductionOrderStatusEnum
BoProductionOrderStatusEnum
OData EnumType 'BoProductionOrderStatusEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceCapacityBaseTypeEnum
ResourceCapacityBaseTypeEnum
OData EnumType 'ResourceCapacityBaseTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: BoIssueMethod
BoIssueMethod
OData EnumType 'BoIssueMethod'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceCapacityRevertedTypeEnum
ResourceCapacityRevertedTypeEnum
OData EnumType 'ResourceCapacityRevertedTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceCapacityActionEnum
ResourceCapacityActionEnum
OData EnumType 'ResourceCapacityActionEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: BoProductionOrderOriginEnum
BoProductionOrderOriginEnum
OData EnumType 'BoProductionOrderOriginEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceDailyCapacityWeekdayEnum
ResourceDailyCapacityWeekdayEnum
OData EnumType 'ResourceDailyCapacityWeekdayEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: ReferencedObjectTypeEnum
ReferencedObjectTypeEnum
OData EnumType 'ReferencedObjectTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceCapacityTypeEnum
ResourceCapacityTypeEnum
OData EnumType 'ResourceCapacityTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: BoItemTreeTypes
BoItemTreeTypes
OData EnumType 'BoItemTreeTypes'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceCapacityMemoSourceEnum
ResourceCapacityMemoSourceEnum
OData EnumType 'ResourceCapacityMemoSourceEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceIssueMethodEnum
ResourceIssueMethodEnum
OData EnumType 'ResourceIssueMethodEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceAllocationEnum
ResourceAllocationEnum
OData EnumType 'ResourceAllocationEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: BoProductionOrderTypeEnum
BoProductionOrderTypeEnum
OData EnumType 'BoProductionOrderTypeEnum'. Serialised by the Service Layer as the member name
sap.businessone.production: ResourceCapacitySourceTypeEnum
ResourceCapacitySourceTypeEnum
OData EnumType 'ResourceCapacitySourceTypeEnum'. Serialised by the Service Layer as the member name
Import
import ballerinax/sap.businessone.production;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: 0
Current verison: 1
Weekly downloads
Keywords
Name/SAP Business One Production
Area/ERP & Business Operations
Vendor/SAP
Cost/Paid
Type/Connector
SAP Business One
Production
ERP
Contributors