Service - CommerceAccounting Freight In

From Izara Wiki
Revision as of 23:12, 15 April 2026 by Sven the Barbarian (talk | contribs) (Created page with "= Overview = Links Freight In objects to Accounting structures. = Repository = ... = Object Schemas = ; Additional Information: Per Service Schemas == comAccFreightInLink == <syntaxhighlight lang="JavaScript"> { objectType: "comAccFreightInLink", canDelete: false, belongTo: { serviceTag: "ComAccLink", objectType: "comAccLinkByBusiness" }, addOnDataStructure: [], storageResources: { "dynamo": { "storageType": "dynamoDB", "tableName": "comAccFre...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

Links Freight In objects to Accounting structures.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

comAccFreightInLink

{
	objectType: "comAccFreightInLink",
	canDelete: false,
	belongTo: {
		serviceTag: "ComAccLink",
		objectType: "comAccLinkByBusiness"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccFreightInLink",
		}
    },
    fieldNames: {
		// businessId
		// purchaseLineItemType // inventory|expense|services|other
		// purchaseLineItemSubType // inventory: goods|intangibleGoods|rawMaterial|asset|intangibleAsset, expense: pointInTime|overTime, services: pointInTime|overTime, other: standard
		// freightInId
		// accountlinkTag // type of link: freightIn
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId","purchaseLineItemType","purchaseLineItemSubType","freightInId"],
		},
		{
			type: "sortKey",
			fieldName: "accountlinkTag"
		},
    ]
}

comAccFreightInTypeLink

{
	objectType: "comAccFreightInTypeLink",
	canDelete: false,
	belongTo: {
		serviceTag: "ComAccLink",
		objectType: "comAccLinkByBusiness"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccFreightInTypeLink",
		}
		"graph": {}
    },
    fieldNames: {
		// businessId
		// purchaseLineItemType // inventory|expense|services|other
		// purchaseLineItemSubType // inventory: goods|intangibleGoods|rawMaterial|asset|intangibleAsset, expense: pointInTime|overTime, services: pointInTime|overTime, other: standard
		// accountlinkTag // type of link: inventoryAsset|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId","purchaseLineItemType","purchaseLineItemSubType"],
		},
		{
			type: "sortKey",
			fieldName: "accountlinkTag"
		},
    ]
}

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Freight In