Service - CommerceAccounting Services: Difference between revisions
Jump to navigation
Jump to search
| Line 69: | Line 69: | ||
"storageType": "dynamoDB", | "storageType": "dynamoDB", | ||
"tableName": "comAccServicesTemplateLink", | "tableName": "comAccServicesTemplateLink", | ||
} | }, | ||
"myGraph": { | |||
"storageType": "graph", | |||
"graphServerTag": "GraphHandler" | |||
} | |||
}, | }, | ||
fieldNames: { | fieldNames: { | ||
Revision as of 03:52, 10 August 2026
Overview
Links Services objects to Accounting structures.
Repository
...
Object Schemas
- Additional Information
- Per Service Schemas
comAccServicesLink
{
objectType: "comAccServicesLink",
generatedBy: "userGenerated",
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccServicesLink",
},
"myGraph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
},
fieldNames: {
// businessId
// organizationId
// servicesId
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "organizationId", "servicesId"],
name: "comAccLinkSerId",
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccServicesTemplateLink
{
objectType: "comAccServicesTemplateLink",
generatedBy: "userGenerated",
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccServicesTemplateLink",
},
"myGraph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
},
fieldNames: {
// businessId
// organizationId
// servicesTemplateId
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "organizationId", "servicesTemplateId"],
name: "comAccLinkSerTemId",
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
comAccServicesTypeLink
{
objectType: "comAccServicesTypeLink",
generatedBy: "userGenerated",
canDelete: false,
belongTo: {
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
},
addOnDataStructure: [],
storageResources: {
"dynamo": {
"storageType": "dynamoDB",
"tableName": "comAccServicesTypeLink",
}
},
fieldNames: {
// businessId
// organizationId
// servicesType // pointInTime|overTime
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
},
identifiers: [
{
type: "partitionKey",
fieldNames: ["businessId", "organizationId", "servicesType"],
name: "comAccLinkSerTypId",
},
{
type: "sortKey",
fieldName: "accountLinkTag"
},
]
}
Relationships
...
flowSchemas
...