Service - CommerceAccounting Other Purchase Item

From Izara Wiki
Revision as of 23:15, 15 April 2026 by Sven the Barbarian (talk | contribs) (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",...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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",
		}
		"graph": {}
    },
    fieldNames: {
		// businessId
		// otherPurchaseItemType // standard
		// accountlinkTag // type of link: expenseEntry|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "otherPurchaseItemType"],
		},
		{
			type: "sortKey",
			fieldName: "accountlinkTag"
		},
    ]
}

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Other Purchase Item