Service - CommerceAccounting Other Purchase Item: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= Overview = Links Other Purchase Item objects to Accounting structures. = Repository = ... = Object Schemas = ; Additional Information: Per Service Schemas == comAccOtherPurchaseItemLink == <syntaxhighlight lang="JavaScript"> { objectType: "comAccOtherPurchaseItemLink", canDelete: false, belongTo: { serviceTag: "ComAccLink", objectType: "comAccLinkByBusiness" }, addOnDataStructure: [], storageResources: { "dynamo": { "storageType": "dynamoDB",...") |
No edit summary |
||
| Line 30: | Line 30: | ||
// businessId | // businessId | ||
// otherPurchaseItemId | // otherPurchaseItemId | ||
// | // accountLinkTag // type of link: expenseEntry|.. | ||
// accountId | // accountId | ||
}, | }, | ||
| Line 40: | Line 40: | ||
{ | { | ||
type: "sortKey", | type: "sortKey", | ||
fieldName: " | fieldName: "accountLinkTag" | ||
}, | }, | ||
] | ] | ||
| Line 62: | Line 62: | ||
"tableName": "comAccOtherPurchaseItemTypeLink", | "tableName": "comAccOtherPurchaseItemTypeLink", | ||
} | } | ||
}, | }, | ||
fieldNames: { | fieldNames: { | ||
// businessId | // businessId | ||
// otherPurchaseItemType // standard | // otherPurchaseItemType // standard | ||
// | // accountLinkTag // type of link: expenseEntry|.. | ||
// accountId | // accountId | ||
}, | }, | ||
| Line 77: | Line 76: | ||
{ | { | ||
type: "sortKey", | type: "sortKey", | ||
fieldName: " | fieldName: "accountLinkTag" | ||
}, | }, | ||
] | ] | ||
Latest revision as of 13:02, 16 April 2026
Overview
Links Other Purchase Item objects to Accounting structures.
Repository
...
Object Schemas
- Additional Information
- Per Service Schemas
comAccOtherPurchaseItemLink
{
objectType: "comAccOtherPurchaseItemLink",
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccOtherPurchaseItemLink",
}
},
fieldNames: {
// businessId
// otherPurchaseItemId
// accountLinkTag // type of link: expenseEntry|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId","otherPurchaseItemId"],
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccOtherPurchaseItemTypeLink
{
objectType: "comAccOtherPurchaseItemTypeLink",
canDelete: false,
belongTo: {
serviceTag: "ComAccLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccOtherPurchaseItemTypeLink",
}
},
fieldNames: {
// businessId
// otherPurchaseItemType // standard
// accountLinkTag // type of link: expenseEntry|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "otherPurchaseItemType"],
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
Relationships
...
flowSchemas
...