Service - CommerceAccounting Freight In: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
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..."
 
Mint (talk | contribs)
 
(4 intermediate revisions by 2 users not shown)
Line 15: Line 15:
{
{
objectType: "comAccFreightInLink",
objectType: "comAccFreightInLink",
    generatedBy: "userGenerated",
canDelete: false,
canDelete: false,
belongTo: {
belongTo: {
serviceTag: "ComAccLink",
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
objectType: "comAccLinkByBusiness"
},
},
Line 25: Line 26:
"storageType": "dynamoDB",
"storageType": "dynamoDB",
"tableName": "comAccFreightInLink",
"tableName": "comAccFreightInLink",
}
},
      "myGraph": {
            "storageType": "graph",
            "graphServerTag": "GraphHandler"
      }
     },
     },
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// purchaseLineItemType // inventory|expense|services|other
// organizationId
// purchaseLineItemSubType // inventory: goods|intangibleGoods|rawMaterial|asset|intangibleAsset, expense: pointInTime|overTime, services: pointInTime|overTime, other: standard
// freightInId
// freightInId
// accountlinkTag // type of link: freightIn
// accountLinkTag // type of link: purchaseLineItem
// accountId
// accountId
     },
     },
Line 38: Line 42:
{
{
type: "partitionKey",
type: "partitionKey",
fieldNames: ["businessId","purchaseLineItemType","purchaseLineItemSubType","freightInId"],
fieldNames: ["businessId", "organizationId", "freightInId"],
name: "comAccLinkFreInId",
},
},
{
{
type: "sortKey",
type: "sortKey",
fieldName: "accountlinkTag"
fieldName: "accountLinkTag"
},
},
     ]
     ]
Line 53: Line 58:
{
{
objectType: "comAccFreightInTypeLink",
objectType: "comAccFreightInTypeLink",
    generatedBy: "userGenerated",
canDelete: false,
canDelete: false,
belongTo: {
belongTo: {
serviceTag: "ComAccLink",
serviceTag: "CommerceAccountingLink",
objectType: "comAccLinkByBusiness"
objectType: "comAccLinkByBusiness"
},
},
Line 63: Line 69:
"storageType": "dynamoDB",
"storageType": "dynamoDB",
"tableName": "comAccFreightInTypeLink",
"tableName": "comAccFreightInTypeLink",
}
},
"graph": {}
      "myGraph": {
            "storageType": "graph",
            "graphServerTag": "GraphHandler"
      }
     },
     },
     fieldNames: {
     fieldNames: {
// businessId
// businessId
// purchaseLineItemType // inventory|expense|services|other
// organizationId
// purchaseLineItemSubType // inventory: goods|intangibleGoods|rawMaterial|asset|intangibleAsset, expense: pointInTime|overTime, services: pointInTime|overTime, other: standard
// freightInType // standard|..
// accountlinkTag // type of link: inventoryAsset|..
// accountLinkTag // type of link: purchaseLineItem|..
// accountId
// accountId
     },
     },
Line 76: Line 85:
{
{
type: "partitionKey",
type: "partitionKey",
fieldNames: ["businessId","purchaseLineItemType","purchaseLineItemSubType"],
fieldNames: ["businessId", "organizationId", "freightInType"],
name: "comAccLinkFreInTypId",
},
},
{
{
type: "sortKey",
type: "sortKey",
fieldName: "accountlinkTag"
fieldName: "accountLinkTag"
},
},
     ]
     ]

Latest revision as of 03:51, 10 August 2026

Overview

Links Freight In objects to Accounting structures.

Repository

...

Object Schemas

Additional Information
Per Service Schemas

comAccFreightInLink

{
	objectType: "comAccFreightInLink",
    generatedBy: "userGenerated",
	canDelete: false,
	belongTo: {
		serviceTag: "CommerceAccountingLink",
		objectType: "comAccLinkByBusiness"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccFreightInLink",
		},
       "myGraph": {
            "storageType": "graph",
            "graphServerTag": "GraphHandler"
       }
    },
    fieldNames: {
		// businessId
		// organizationId
		// freightInId
		// accountLinkTag // type of link: purchaseLineItem
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "organizationId", "freightInId"],
			name: "comAccLinkFreInId",
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

comAccFreightInTypeLink

{
	objectType: "comAccFreightInTypeLink",
    generatedBy: "userGenerated",
	canDelete: false,
	belongTo: {
		serviceTag: "CommerceAccountingLink",
		objectType: "comAccLinkByBusiness"
	},
	addOnDataStructure: [],
	storageResources: {
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "comAccFreightInTypeLink",
		},
       "myGraph": {
            "storageType": "graph",
            "graphServerTag": "GraphHandler"
       }
    },
    fieldNames: {
		// businessId
		// organizationId
		// freightInType // standard|..
		// accountLinkTag // type of link: purchaseLineItem|..
		// accountId
    },
    identifiers: [
		{
			type: "partitionKey",
			fieldNames: ["businessId", "organizationId", "freightInType"],
			name: "comAccLinkFreInTypId",
		},
		{
			type: "sortKey",
			fieldName: "accountLinkTag"
		},
    ]
}

Relationships

...

flowSchemas

...

Working documents

CommerceAccounting Freight In