Service - CommerceAccounting Freight In: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 26: Line 26:
// businessId
// businessId
// freightInId
// freightInId
// accountLinkTag // type of link: freightIn
// accountLinkTag // type of link: purchaseLineItem
// accountId
// accountId
     },
     },

Latest revision as of 09:27, 6 May 2026

Overview

Links Freight In objects to Accounting structures.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

comAccFreightInLink

{
	objectType: "comAccFreightInLink",
	canDelete: false,
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccFreightInLink",
		}
    },
    fieldNames: {
		// businessId
		// freightInId
		// accountLinkTag // type of link: purchaseLineItem
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId","freightInId"],
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

comAccFreightInTypeLink

{
	objectType: "comAccFreightInTypeLink",
	canDelete: false,
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccFreightInTypeLink",
		}
    },
    fieldNames: {
		// businessId
		// freightInType // standard|..
		// accountLinkTag // type of link: purchaseLineItem|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId","freightInType"],
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Freight In