Service - CommerceAccounting Expense: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 26: | Line 26: | ||
// businessId | // businessId | ||
// expenseId | // expenseId | ||
// accountLinkTag // type of link: | // accountLinkTag // type of link: purchaseLineItem|.. | ||
// accountId | // accountId | ||
}, | }, | ||
Latest revision as of 08:02, 6 May 2026
Overview
Links Expense objects to Accounting structures.
Repository
...
Object Schemas
- Additional Information
- Per Service Schemas
comAccExpenseLink
{
objectType: "comAccExpenseLink",
canDelete: false,
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccExpenseLink",
}
},
fieldNames: {
// businessId
// expenseId
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId","expenseId"],
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccExpenseTypeLink
{
objectType: "comAccExpenseTypeLink",
canDelete: false,
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccExpenseTypeLink",
}
},
fieldNames: {
// businessId
// expenseType // pointInTime|overTime
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "expenseType"],
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
RelationshipSchemas
...