Service - Work In Progress Manager
Revision as of 14:41, 21 January 2026 by Sven the Barbarian (talk | contribs) (Created page with "= Overview = Different types of WorkInProgress elements can be connected to a manufactureOperation. = Repository = .... = Object Schemas = ; Additional Information: Per Service Schemas == objType == === workInProgress === <syntaxhighlight lang="JavaScript"> { objectType: "workInProgress", canDelete: false, belongTo: { serviceTag: "Business", objectType: "business" }, addOnDataStructure: [], storageResources: { myGraph: { storageType: "graph",...")
Overview
Different types of WorkInProgress elements can be connected to a manufactureOperation.
Repository
....
Object Schemas
- Additional Information
- Per Service Schemas
objType
workInProgress
{
objectType: "workInProgress",
canDelete: false,
belongTo: {
serviceTag: "Business",
objectType: "business"
},
addOnDataStructure: [],
storageResources: {
myGraph: {
storageType: "graph",
graphServerTag: "GraphHandler"
}
"dynamo": {
"storageType": "dynamoDB",
"tableName": "workInProgress",
}
},
fieldNames: {
workInProgressId: {
type: "string",
randomOnCreate: true,
storageResourceTags: ['myGraph', 'dynamo']
},
},
identifiers: [
{
type: "identifier",
fieldName: "workInProgressId"
}
]
}