Service - CommerceAccounting Other Purchase Item: Difference between revisions

From Izara Wiki
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|..
// accountLinkTag // type of link: expenseEntry|..
// accountId
// accountId
     },
     },
Line 40: Line 40:
{
{
type: "sortKey",
type: "sortKey",
fieldName: "accountlinkTag"
fieldName: "accountLinkTag"
},
},
     ]
     ]
Line 62: Line 62:
"tableName": "comAccOtherPurchaseItemTypeLink",
"tableName": "comAccOtherPurchaseItemTypeLink",
}
}
"graph": {}
     },
     },
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// otherPurchaseItemType // standard
// otherPurchaseItemType // standard
// accountlinkTag // type of link: expenseEntry|..
// accountLinkTag // type of link: expenseEntry|..
// accountId
// accountId
     },
     },
Line 77: Line 76:
{
{
type: "sortKey",
type: "sortKey",
fieldName: "accountlinkTag"
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

...

Working documents

CommerceAccounting Other Purchase Item