Service - CommerceAccounting Inventory: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 16: | Line 16: | ||
objectType: "comAccInventoryLink", | objectType: "comAccInventoryLink", | ||
canDelete: false, | canDelete: false, | ||
addOnDataStructure: [], | addOnDataStructure: [], | ||
storageResources: { | storageResources: { | ||
| Line 30: | Line 26: | ||
// businessId | // businessId | ||
// inventoryId | // inventoryId | ||
// accountLinkTag // type of link: | // accountLinkTag // type of link: purchaseLineItem|.. | ||
// accountId | // accountId | ||
}, | }, | ||
| Line 52: | Line 48: | ||
objectType: "comAccInventoryLocationLink", | objectType: "comAccInventoryLocationLink", | ||
canDelete: false, | canDelete: false, | ||
addOnDataStructure: [], | addOnDataStructure: [], | ||
storageResources: { | storageResources: { | ||
| Line 66: | Line 58: | ||
// businessId | // businessId | ||
// inventoryLocationId | // inventoryLocationId | ||
// accountLinkTag // type of link: | // accountLinkTag // type of link: purchaseLineItem|.. | ||
// accountId | // accountId | ||
}, | }, | ||
| Line 88: | Line 80: | ||
objectType: "comAccInventoryTemplateLink", | objectType: "comAccInventoryTemplateLink", | ||
canDelete: false, | canDelete: false, | ||
addOnDataStructure: [], | addOnDataStructure: [], | ||
storageResources: { | storageResources: { | ||
| Line 102: | Line 90: | ||
// businessId | // businessId | ||
// inventoryTemplateId | // inventoryTemplateId | ||
// accountLinkTag // type of link: | // accountLinkTag // type of link: purchaseLineItem|.. | ||
// accountId | // accountId | ||
}, | }, | ||
| Line 124: | Line 112: | ||
objectType: "comAccInventoryTypeLink", | objectType: "comAccInventoryTypeLink", | ||
canDelete: false, | canDelete: false, | ||
addOnDataStructure: [], | addOnDataStructure: [], | ||
storageResources: { | storageResources: { | ||
| Line 138: | Line 122: | ||
// businessId | // businessId | ||
// inventoryType // goods|intangibleGoods|rawMaterial|asset|intangibleAsset | // inventoryType // goods|intangibleGoods|rawMaterial|asset|intangibleAsset | ||
// accountLinkTag // type of link: | // accountLinkTag // type of link: purchaseLineItem|.. | ||
// accountId | // accountId | ||
}, | }, | ||
Latest revision as of 08:04, 6 May 2026
Overview
Links Inventory objects to Accounting structures.
Repository
...
Object Schemas
- Additional Information
- Per Service Schemas
comAccInventoryLink
{
objectType: "comAccInventoryLink",
canDelete: false,
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryLink",
}
},
fieldNames: {
// businessId
// inventoryId
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId","inventoryId"],
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccInventoryLocationLink
{
objectType: "comAccInventoryLocationLink",
canDelete: false,
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryLocationLink",
}
},
fieldNames: {
// businessId
// inventoryLocationId
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "inventoryLocationId"],
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccInventoryTemplateLink
{
objectType: "comAccInventoryTemplateLink",
canDelete: false,
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryTemplateLink",
}
},
fieldNames: {
// businessId
// inventoryTemplateId
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "inventoryTemplateId"],
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccInventoryTypeLink
{
objectType: "comAccInventoryTypeLink",
canDelete: false,
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccInventoryTypeLink",
}
},
fieldNames: {
// businessId
// inventoryType // goods|intangibleGoods|rawMaterial|asset|intangibleAsset
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "inventoryType"],
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
Relationships
...
flowSchemas
...