Service - CommerceAccounting Services: Difference between revisions
Jump to navigation
Jump to search
Created page with "= Overview = Links Services objects to Accounting structures. = Repository = ... = Object Schemas = ; Additional Information: Per Service Schemas == comAccServicesLink == <syntaxhighlight lang="JavaScript"> { objectType: "comAccServicesLink", canDelete: false, belongTo: { serviceTag: "ComAccLink", objectType: "comAccLinkByBusiness" }, addOnDataStructure: [], storageResources: { "dynamo": { "storageType": "dynamoDB", "tableName": "comAccService..." |
|||
| (5 intermediate revisions by 2 users not shown) | |||
| Line 15: | Line 15: | ||
{ | { | ||
objectType: "comAccServicesLink", | objectType: "comAccServicesLink", | ||
generatedBy: "userGenerated", | |||
canDelete: false, | canDelete: false, | ||
belongTo: { | belongTo: { | ||
serviceTag: " | serviceTag: "CommerceAccountingLink", | ||
objectType: "comAccLinkByBusiness" | objectType: "comAccLinkByBusiness" | ||
}, | }, | ||
| Line 25: | Line 26: | ||
"storageType": "dynamoDB", | "storageType": "dynamoDB", | ||
"tableName": "comAccServicesLink", | "tableName": "comAccServicesLink", | ||
} | }, | ||
"myGraph": { | |||
"storageType": "graph", | |||
"graphServerTag": "GraphHandler" | |||
} | |||
}, | }, | ||
fieldNames: { | fieldNames: { | ||
// businessId | // businessId | ||
// organizationId | |||
// servicesId | // servicesId | ||
// | // accountLinkTag // type of link: purchaseLineItem|.. | ||
// accountId | // accountId | ||
}, | }, | ||
| Line 36: | Line 42: | ||
{ | { | ||
type: "partitionKey", | type: "partitionKey", | ||
fieldNames: ["businessId","servicesId"], | fieldNames: ["businessId", "organizationId", "servicesId"], | ||
name: "comAccLinkSerId", | |||
}, | }, | ||
{ | { | ||
type: "sortKey", | type: "sortKey", | ||
fieldName: " | fieldName: "accountLinkTag" | ||
}, | }, | ||
] | ] | ||
| Line 51: | Line 58: | ||
{ | { | ||
objectType: "comAccServicesTemplateLink", | objectType: "comAccServicesTemplateLink", | ||
generatedBy: "userGenerated", | |||
canDelete: false, | canDelete: false, | ||
belongTo: { | belongTo: { | ||
serviceTag: " | serviceTag: "CommerceAccountingLink", | ||
objectType: "comAccLinkByBusiness" | objectType: "comAccLinkByBusiness" | ||
}, | }, | ||
| Line 61: | Line 69: | ||
"storageType": "dynamoDB", | "storageType": "dynamoDB", | ||
"tableName": "comAccServicesTemplateLink", | "tableName": "comAccServicesTemplateLink", | ||
} | }, | ||
"myGraph": { | |||
"storageType": "graph", | |||
"graphServerTag": "GraphHandler" | |||
} | |||
}, | }, | ||
fieldNames: { | fieldNames: { | ||
// businessId | // businessId | ||
// organizationId | |||
// servicesTemplateId | // servicesTemplateId | ||
// | // accountLinkTag // type of link: purchaseLineItem|.. | ||
// accountId | // accountId | ||
}, | }, | ||
| Line 73: | Line 85: | ||
{ | { | ||
type: "partitionKey", | type: "partitionKey", | ||
fieldNames: ["businessId", "servicesTemplateId"], | fieldNames: ["businessId", "organizationId", "servicesTemplateId"], | ||
name: "comAccLinkSerTemId", | |||
}, | }, | ||
{ | { | ||
type: "sortKey", | type: "sortKey", | ||
fieldName: " | fieldName: "accountLinkTag" | ||
}, | }, | ||
] | ] | ||
| Line 88: | Line 101: | ||
{ | { | ||
objectType: "comAccServicesTypeLink", | objectType: "comAccServicesTypeLink", | ||
generatedBy: "userGenerated", | |||
canDelete: false, | canDelete: false, | ||
belongTo: { | belongTo: { | ||
serviceTag: " | serviceTag: "CommerceAccountingLink", | ||
objectType: "comAccLinkByBusiness" | objectType: "comAccLinkByBusiness" | ||
}, | }, | ||
| Line 98: | Line 112: | ||
"storageType": "dynamoDB", | "storageType": "dynamoDB", | ||
"tableName": "comAccServicesTypeLink", | "tableName": "comAccServicesTypeLink", | ||
} | }, | ||
"myGraph": { | |||
"storageType": "graph", | |||
"graphServerTag": "GraphHandler" | |||
} | |||
}, | }, | ||
fieldNames: { | fieldNames: { | ||
// businessId | // businessId | ||
// organizationId | |||
// servicesType // pointInTime|overTime | // servicesType // pointInTime|overTime | ||
// | // accountLinkTag // type of link: purchaseLineItem|.. | ||
// accountId | // accountId | ||
}, | }, | ||
| Line 110: | Line 128: | ||
{ | { | ||
type: "partitionKey", | type: "partitionKey", | ||
fieldNames: ["businessId", "servicesType"], | fieldNames: ["businessId", "organizationId", "servicesType"], | ||
name: "comAccLinkSerTypId", | |||
}, | }, | ||
{ | { | ||
type: "sortKey", | type: "sortKey", | ||
fieldName: " | fieldName: "accountLinkTag" | ||
}, | }, | ||
] | ] | ||
| Line 130: | Line 149: | ||
= Working documents = | = Working documents = | ||
[[:Category:Working_documents - CommerceAccounting | [[:Category:Working_documents - CommerceAccounting Services| CommerceAccounting Services]] | ||
[[Category:Backend services| CommerceAccounting | [[Category:Backend services| CommerceAccounting Services]] | ||
Latest 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",
},
"myGraph": {
"storageType": "graph",
"graphServerTag": "GraphHandler"
}
},
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
...