ConsolidationService - Scoped, Global
The ConsolidationService API is a script include with methods for merging and de-duplicating complex, hierarchical business data (such as contracts, quotes, line items, and entitlements) using custom logic.
This API belongs to the sn_l2c_core namespace, and requires the admin role and the Lead to Cash Core (com.snc.l2c_core) plugin to access it.
- Defining what makes two records the same across multiple attributes or nested child entities.
- Conditionally merging records when certain criteria are met.
- Applying custom calculations during consolidation, like summing quantities or calculating date ranges.
- Recursively deduplicating (consolidating) deeply nested child structures.
- Reusing the same consolidation logic consistently across flows and integrations.
The ConsolidationService is part of the Lead to Cash Core primitives engine and is accessed via the Lead to Cash Core product.
Before you begin
- The Lead to Cash Core plugin (
com.snc.l2c_core) installed and theadminrole. - Two custom script includes: a
ConsolidationServicesubclass containing your consolidation logic, and aLeadToCashServicesubclass that returns it fromgetConsolidationService(). The subclass wires your consolidation logic into the pipeline so PrimitiveUtil can resolve it at runtime. See the 'Extension and workflow' section for more information. - Familiarity with PrimitiveUtil, which is the entry point for invoking L2C Core primitives, including consolidation. See LeadtoCashCore - Scoped for more information.Note:If no custom implementation is registered, PrimitiveUtil falls back to the base
sn_l2c_core.LeadToCashServiceautomatically which has consolidation disabled by default, meaning no merging or deduplication is performed. You never need to instantiate or reference this fallback directly in your code.
ConsolidationService API extension and workflow
The ConsolidationService API's base system is disabled by default to ensure that unwanted consolidation isn't applied unknowingly. To enable consolidation actions, you must create custom logic and optionally override methods provided with the ConsolidationService script include.
- Required. Create a custom script include that extends
sn_l2c_core.ConsolidationService. - Required. Override enableConsolidation() to return true. This flag enables the system to allow consolidation on your service. Example
script:
var MyConsolidationService = Class.create(); MyConsolidationService.prototype = Object.extendsObject( sn_l2c_core.ConsolidationService, { enableConsolidation: function () { return true; // REQUIRED }, type: 'MyConsolidationService' }); - Depending on the entities you want to control, optionally override any number of these additional methods:Note:If you don’t override any methods,
consolidate()returns the target JSON unchanged with no merging or consolidation performed.Method Action canConsolidateEntity(contextType) Choose which child arrays to consolidate within a target. canMergeEntity(contextType) Merge source children into a target. getHashConfig() Specify how entities are grouped (hashing). canConsolidateJSONs(json1, json2) Decide if two JSONs should merge. overrideAttributeValues() Apply custom business logic after a merge and before the final consolidated JSON continues through the workflow. getPrimary(json1, json2) Decides which of the two entities is treated as the primary record during consolidation, whose attribute values are retained by default in the merged result. preProcess() Pre-hook for computing data. postHierarchyConsolidation() Post-hook for final cleanup. - Register your custom
ConsolidationServiceagainst the extension point so that PrimitiveUtil can resolve it at runtime. - Return your custom
ConsolidationServicefromsn_l2c_core.LeadToCashService.LeadToCashServiceis the entry point that wires your consolidation logic into the Lead‑to‑Cash pipeline so that it's actually used whenever consolidation is invoked. Example script:var MyLeadToCashService = Class.create(); MyLeadToCashService.prototype = Object.extendsObject( sn_l2c_core.LeadToCashService, { getConsolidationService: function () { return new MyConsolidationService(); }, type: 'MyLeadToCashService' }); - Invoke your consolidation by calling consolidate() either directly from a server‑side script or indirectly via Lead‑to‑Cash Flow Designer primitives.
ConsolidationService - canConsolidateEntity(String contextType)
Overridable method for specifying which child entity types can be consolidated within a JSON. The base implementation returns false for all entity types if not overridden.
| Name | Type | Description |
|---|---|---|
| contextType | String | The key name of the array property on the entity JSON representing the child entity type. Examples: "lineItems", "characteristics", "coveredProducts". |
| Type | Description |
|---|---|
| Boolean | Flag indicating whether consolidation is possible on the selected entity type. Valid values:
Default: false |
The following example shows how to override canConsolidateEntity() to enable consolidation for line items and covered products.
var MyConsolidationService = Class.create();
MyConsolidationService.prototype = Object.extendsObject(
sn_l2c_core.ConsolidationService,
{
enableConsolidation: function () {
return true;
},
canConsolidateEntity: function (contextType) {
return contextType === "lineItems" ||
contextType === "coveredProducts";
},
type: "MyConsolidationService"
}
);
// Example usage
var service = new MyConsolidationService();
gs.info("Can consolidate lineItems = " + service.canConsolidateEntity("lineItems"));
gs.info(
"Can consolidate characteristics = " +
service.canConsolidateEntity("characteristics")
);
Can consolidate lineItems = true
Can consolidate characteristics = falseConsolidationService - canConsolidateJSONs(Object json1, Object json2)
Overridable method that adds conditions for determining whether two entity JSONs with the same hash can be consolidated. The base implementation returns false if not overridden.
| Name | Type | Description |
|---|---|---|
| json1 | Object | First entity JSON to compare. Contains sys_id, table, attributes, and child arrays. |
| json2 | Object | Second entity JSON to compare. Contains sys_id, table, attributes, and child arrays. |
| Type | Description |
|---|---|
| Boolean | Flag that indicates whether the two JSONs can be consolidated into one. Valid values:
Default: false |
This example shows how to override canConsolidateJSONs() to allow consolidation of line items with the same product offering.
var MyConsolidationService = Class.create();
MyConsolidationService.prototype = Object.extendsObject(sn_l2c_core.ConsolidationService, {
enableConsolidation: function() {
return true;
},
canConsolidateJSONs: function(json1, json2) {
if (json1.table == "sn_quote_mgmt_core_quote_line_item") {
// Fall back to empty string if product_offering has no value
var po1 = json1.attributes.product_offering ? json1.attributes.product_offering.value : "";
// Fall back to empty string if product_offering has no value
var po2 = json2.attributes.product_offering ? json2.attributes.product_offering.value : "";
// Consolidate only if both line items share the same product offering, and that value is not empty
return po1 == po2 && po1 != "";
}
return false;
},
type: 'MyConsolidationService'
});
var service = new MyConsolidationService();
// Two line items with the same product offering — should consolidate
var json1 = {
table: "sn_quote_mgmt_core_quote_line_item",
attributes: {
product_offering: { value: "po_001" }
}
};
var json2 = {
table: "sn_quote_mgmt_core_quote_line_item",
attributes: {
product_offering: { value: "po_001" }
}
};
// Two line items with different product offerings — should not consolidate
var json3 = {
table: "sn_quote_mgmt_core_quote_line_item",
attributes: {
product_offering: { value: "po_002" }
}
};
gs.info("Same product offering = " + service.canConsolidateJSONs(json1, json2));
gs.info("Different product offering = " + service.canConsolidateJSONs(json1, json3));
Same product offering = true
Different product offering = falseConsolidationService - canMergeEntity(String contextType)
Overridable method for specifying which child entity types can be merged from source JSONs into the target JSON. The base implementation returns false for all entity types if not overridden.
| Name | Type | Description |
|---|---|---|
| contextType | String | The key name of the array property on the entity JSON representing the child entity type. Examples: "lineItems", "characteristics", "coveredProducts". |
| Type | Description |
|---|---|
| Boolean | Flag that indicate whether entities of this type can be merged from source to target. Valid values:
Default: false |
The following example shows how to override canMergeEntity() to enable merging for line items and covered products.
var MyConsolidationService = Class.create();
MyConsolidationService.prototype = Object.extendsObject(
sn_l2c_core.ConsolidationService,
{
enableConsolidation: function () {
return true;
},
canMergeEntity: function (contextType) {
return contextType === "lineItems" ||
contextType === "coveredProducts";
},
type: "MyConsolidationService"
}
);
// Example usage
var service = new MyConsolidationService();
gs.info("Can merge lineItems = " + service.canMergeEntity("lineItems"));
gs.info("Can merge characteristics = " + service.canMergeEntity("characteristics"));
Can merge lineItems = true
Can merge characteristics = falseConsolidationService - consolidate(Object sourceJSON, Object targetJSON, Object additionalParams)
Merges source entity JSON(s) into a target entity JSON and consolidates child entities within the merged result based on hash-based grouping and pairwise consolidation logic.
The consolidate() method acts as the main entry point for consolidating JSONs. This method handles both single JSON and multiple JSONs, via the items array, as source input.
| Name | Type | Description |
|---|---|---|
| sourceJSON | Object | Accepts the JSON output of the LeadtoCashCore - Scoped
createInstance() or effect() method. Can be a single entity JSON object, or a JSON object containing an items array of multiple entity JSONs. If you're not piping output from another primitive, you can also construct this JSON manually following the structure below." If sourceJSON doesn't contain an items array, the method treats it as a single entity and wraps it in an array automatically. Pass null or omit this parameter if only target consolidation is needed. |
| sourceJSON.items | Array of Objects | Optional. Array of entity JSONs to merge into the target. Each item represents an entity with its attributes and child arrays. If this property exists, items is used directly as the list of source
entities. |
| sourceJSON.items.attributes | Object | Key-value pairs representing the entity attributes. Each attribute is an object with a value property.Example: |
| sourceJSON.items.attributes.end_date | String | End date of the attribute. Format: GlideDate value (for example, 2026-01-01) |
| sourceJSON.items.attributes.product_offering | String | Name of the product offering associated with the attribute. Located in the Product Offering [sn_prd_pm_product_offering] table. |
| sourceJSON.items.attributes.quantity | String | Number of product items purchased relative to the attribute. |
| sourceJSON.items.attributes.start_date | String | Start date of the attribute. Format: GlideDate value (for example, 2026-01-01) |
| sourceJSON.items.characteristics | Array of Objects | Optional. Array of characteristic entity JSONs. |
| sourceJSON.items.characteristics.attributes | Object | Attributes associated with the item characteristic. Each child property is a key-value pair representing the attribute. The attribute is an object with a value property. |
| sourceJSON.items.characteristics.attributes.characteristic | Object | Key-value pair representing the characteristic associated with the attribute. characteristic is an object with a value property. |
| sourceJSON.items.characteristics.attributes.value | Object | Key-value pair representing the attribute value associated with the parent characteristic. value is an object with a value property. |
| sourceJSON.items.characteristics.sys_id | String | Sys_id of the characteristic associated with the item. |
| sourceJSON.items.characteristics.table | String | Table location of the characteristic associated with the item. |
| sourceJSON.items.coveredProducts | Array of Objects | Optional. Array of covered product entity JSONs. |
| sourceJSON.items.coveredProducts.sys_id | Object | Sys_id of the covered product record. |
| sourceJSON.items.coveredProducts.table | String | Table name containing the covered product record. For example, sn_install_base_m2m_contract_sold_product. |
| sourceJSON.items.coveredProducts.attributes | Object | Attributes of the covered product. Fields may vary based on the record. |
| sourceJSON.items.coveredProducts.attributes.sold_product | Object | Sold product record associated with this covered product. |
| sourceJSON.items.coveredProducts.attributes.contract | Object | Parent contract record under which coverage is defined. |
| sourceJSON.items.coveredProducts.attributes.service_contract_line | Object | Specific service contract line item linked to this covered product. |
| sourceJSON.items.coveredProducts.attributes.entitlement | Object | Entitlement record governing the coverage terms. |
| sourceJSON.items.coveredProducts.attributes.install_base | Object | Install base record representing the deployed asset. |
| sourceJSON.items.coveredProducts.attributes.covering_sold_product | Object | Sold product providing coverage for this entry. |
| sourceJSON.items.coveredProducts.attributes.date_added | Object | ISO 8601 date string indicating when the product was added to coverage. |
| sourceJSON.items.coveredProducts.attributes.date_removed | Object | ISO 8601 date string indicating when the product was removed from coverage. Null or empty if currently active. |
| sourceJSON.items.lineItems | Array of Objects | Optional. Array of child line item entity JSONs. Each child follows the same structure (sys_id, table, attributes, and nested children). |
| sourceJSON.items.lineItems.attributes | Object | Key-value pairs representing the entity attributes. Each attribute is an object with a value property. Follows the same structure as sourceJSON.items.attributes. |
| sourceJSON.items.lineItems.characteristic | Object | Key-value pairs representing the characteristic of the line item. The characteristic is an object with a value property. Follows the same structure as
sourceJSON.items.characteristics. |
| sourceJSON.items.lineItems.coveredProducts | Array of Objects | Array of covered product entity JSONs associated with the line item. Follows the same structure as sourceJSON.items.coveredProducts. |
| sourceJSON.items.lineItems.sys_id | String | Sys_id of the entity JSONs line item. |
| sourceJSON.items.lineItems.table | String | Table location of the entity JSONs line item. |
| sourceJSON.items.sys_id | String | Sys_id of the source entity record. |
| sourceJSON.items.table | String | Table name of the source entity. Example: sn_pss_core_service_contract_line. |
| targetJSON | Object | Required. Target entity JSON to consolidate the source JSON into. Must not be null or empty. Follows the same object structure as the source entity (sourceJSON
parameter). |
| targetJSON.attributes | Object | Key-value pairs representing the target entity attributes. Each attribute is an object with a value property. Follows the same object structure as the source attributes (sourceJSON.items.attributes
parameter).Example: |
| targetJSON.lineItems | Array of Objects | Optional. Array of child line item entity JSONs on the target. Follows the same object structure as sourceJSON.items.lineItems. |
| targetJSON.lineItems.attributes | Object | Key-value pairs representing the entity attributes. Each attribute is an object with a value property. Follows the same structure as sourceJSON.items.attributes. |
| targetJSON.lineItems.characteristics | Object | Key-value pairs representing the characteristic of the line item. The characteristic is an object with a value property. Follows the same structure as
sourceJSON.items.characteristics. |
| targetJSON.lineItems.coveredProducts | Array of Objects | Array of covered product entity JSONs associated with the line item. Follows the same structure as sourceJSON.items.coveredProducts. |
| targetJSON.lineItems.sys_id | String | Sys_id of the entity JSONs line item. |
| targetJSON.lineItems.table | String | Table location of the entity JSONs line item. |
| targetJSON.sys_id | String | Sys_id of the target entity record. |
| targetJSON.table | String | Table name of the target entity. Example: sn_pss_core_service_contract |
| additionalParams | Object | Optional. Extra configuration parameters passed through to the consolidation methods. Stored on the instance as this.additionalParams and is accessible in all overridable methods. Can contain any custom
key-value pairs needed by the implementing class. |
| Type | Description |
|---|---|
| Object | Consolidated JSON result. The merged and consolidated entity JSON contains all attributes from the target and merged/consolidated child arrays. Returns targetJSON if consolidation is disabled or sourceJSON is invalid. Returns null if targetJSON is null or empty. |
The following example shows how to invoke the consolidate method via LeadToCashService. It consolidates a source entity JSON containing line items into a target entity JSON. Line items with the same product offering are consolidated.
LeadToCashService directly for simplicity, but in production use, your custom subclass should be registered via the extension point and invoked through
PrimitiveUtil.var sourceToTargetConfigID = "sn_cont_ent_wf_contract_to_quote";
var util = new sn_l2c_core.LeadToCashService(sourceToTargetConfigID);
var sourceJSON = {
"items": [{
"sys_id": "a1b2c3d4e5f6",
"table": "sn_pss_core_service_contract_line",
"attributes": {
"product_offering": {
"value": "po_001"
},
"quantity": {
"value": "5"
},
"start_date": {
"value": "2026-01-01"
},
"end_date": {
"value": "2026-12-31"
}
},
"characteristics": [{
"sys_id": "ch_001",
"table": "sn_pss_core_entitlement_characteristic",
"attributes": {
"characteristic": {
"value": "speed"
},
"value": {
"value": "100mbps"
}
}
}],
"coveredProducts": []
}]
};
var targetJSON = {
"sys_id": "t1a2b3c4d5e6",
"table": "sn_quote_mgmt_core_quote",
"attributes": {
"account": {
"value": "acct_001"
}
},
"lineItems": [{
"sys_id": "li_001",
"table": "sn_quote_mgmt_core_quote_line_item",
"attributes": {
"product_offering": {
"value": "po_001"
},
"quantity": {
"value": "3"
},
"start_date": {
"value": "2026-03-01"
},
"end_date": {
"value": "2026-11-30"
}
},
"characteristics": [{
"sys_id": "ch_002",
"table": "sn_pss_core_entitlement_characteristic",
"attributes": {
"characteristic": {
"value": "speed"
},
"value": {
"value": "100mbps"
}
}
}],
"coveredProducts": []
}]
};
var additionalParams = {};
var output = util.consolidate(sourceJSON, targetJSON, additionalParams);
gs.info("Consolidated output = " + JSON.stringify(output));
Output:
{
"sys_id": "t1a2b3c4d5e6",
"table": "sn_quote_mgmt_core_quote",
"attributes": {
"account": {
"value": "acct_001"
}
},
"lineItems": [
{
"sys_id": "li_001",
"table": "sn_quote_mgmt_core_quote_line_item",
"attributes": {
"product_offering": {
"value": "po_001"
},
"quantity": {
"value": "8"
},
"start_date": {
"value": "2026-01-01"
},
"end_date": {
"value": "2026-12-31"
}
},
"characteristics": [
{
"sys_id": "ch_002",
"table": "sn_pss_core_entitlement_characteristic",
"attributes": {
"characteristic": {
"value": "speed"
},
"value": {
"value": "100mbps"
}
}
}
],
"coveredProducts": []
}
]
}
The following example shows how to invoke the consolidate method with null sourceJSON. In this case, only the child entities within the targetJSON are consolidated. This is useful when the target already contains duplicate line items that need to be merged.
var sourceToTargetConfigID = "sn_cont_ent_wf_contract_to_quote";
var util = new sn_l2c_core.LeadToCashService(sourceToTargetConfigID);
var targetJSON = {
"sys_id": "t1a2b3c4d5e6",
"table": "sn_quote_mgmt_core_quote",
"attributes": {
"account": {
"value": "acct_001"
}
},
"lineItems": [{
"sys_id": "li_001",
"table": "sn_quote_mgmt_core_quote_line_item",
"attributes": {
"product_offering": {
"value": "po_001"
},
"quantity": {
"value": "5"
}
},
"characteristics": [],
"coveredProducts": []
},
{
"sys_id": "li_002",
"table": "sn_quote_mgmt_core_quote_line_item",
"attributes": {
"product_offering": {
"value": "po_001"
},
"quantity": {
"value": "3"
}
},
"characteristics": [],
"coveredProducts": []
}
]
};
var output = util.consolidate(null, targetJSON, {});
gs.info("Consolidated output = " + JSON.stringify(output));
Output:
{
"sys_id": "t1a2b3c4d5e6",
"table": "sn_quote_mgmt_core_quote",
"attributes": {
"account": {
"value": "acct_001"
}
},
"lineItems": [
{
"sys_id": "li_001",
"table": "sn_quote_mgmt_core_quote_line_item",
"attributes": {
"product_offering": {
"value": "po_001"
},
"quantity": {
"value": "8"
}
},
"characteristics": [],
"coveredProducts": []
}
]
}
ConsolidationService - enableConsolidation()
Overridable method that controls whether consolidation is enabled for this service instance. The base implementation returns false if not overridden. Implementing classes must override this method to return true to enable consolidation.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| Boolean | Flag that indicates whether the service has successfully enabled consolidation. Valid values:
Default: false |
var MyConsolidationService = Class.create();
MyConsolidationService.prototype = Object.extendsObject(sn_l2c_core.ConsolidationService, {
enableConsolidation: function() {
return true;
},
type: 'MyConsolidationService'
});
var service = new MyConsolidationService();
var isEnabled = service.enableConsolidation();
gs.info("Consolidation enabled = " + isEnabled);
Consolidation enabled = trueConsolidationService - getHashConfig()
Overridable method that returns the hash configuration for grouping entities before consolidation. The configuration specifies which attributes and child context types generate an MD5 hash for each entity. Entities with the same hash are grouped for pairwise consolidation. The base implementation returns an empty object when not overridden.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| Object | A JSON object mapping table names to their hash configuration. Each table entry contains:
Expected return format: When the hash configuration for a table is an empty object
When the hash configuration for a table isn't found (undefined or null), an error is logged and entities are returned unchanged. The base implementation returns an empty object when not overridden. |
The following example shows how to override getHashConfig() to define hash attributes for contract lines and entitlement characteristics.
var MyConsolidationService = Class.create();
MyConsolidationService.prototype = Object.extendsObject(sn_l2c_core.ConsolidationService, {
enableConsolidation: function() {
return true;
},
getHashConfig: function() {
return {
"sn_quote_mgmt_core_quote_line_item": {
"attributes": ["product_offering"],
"childContextTypes": ["sn_pss_core_entitlement_characteristic"]
},
"sn_pss_core_entitlement_characteristic": {
"attributes": ["characteristic", "option", "value"]
},
"sn_pss_core_covered_product": {
"attributes": ["sold_product"]
}
};
},
type: 'MyConsolidationService'
});
var service = new MyConsolidationService();
var config = service.getHashConfig();
gs.info("Hash config = " + JSON.stringify(config));
Hash config = {
"sn_quote_mgmt_core_quote_line_item": {
"attributes": ["product_offering"],
"childContextTypes": ["sn_pss_core_entitlement_characteristic"]
},
"sn_pss_core_entitlement_characteristic": {
"attributes": ["characteristic", "option", "value"]
},
"sn_pss_core_covered_product": {
"attributes": ["sold_product"]
}
}ConsolidationService - getPrimary(Object json1, Object json2)
Overridable method to determine the primary JSON when two JSONs are being consolidated. For non-overridden attributes, the primary JSON's attribute values are used on the consolidated result. The base implementation returns json1 if not overridden.
| Name | Type | Description |
|---|---|---|
| json1 | Object | First entity JSON to consolidate. Contains sys_id, table, attributes, and child arrays. |
| json2 | Object | Second entity JSON to consolidate. Contains sys_id, table, attributes, and child arrays. |
| Type | Description |
|---|---|
| Object | The selected primary JSON. This JSON's attributes become the default values on the consolidated result. Must be either json1 or json2. The base implementation returns json1 if not overridden. |
The following example shows how to override getPrimary() to select the entity with the earlier start date as primary.
// Custom ConsolidationService with getPrimary override
var MyConsolidationService = Class.create();
MyConsolidationService.prototype = Object.extendsObject(sn_l2c_core.ConsolidationService, {
enableConsolidation: function() {
return true;
},
getPrimary: function(json1, json2) {
var date1 = json1.attributes.start_date ? json1.attributes.start_date.value : "";
var date2 = json2.attributes.start_date ? json2.attributes.start_date.value : "";
return date1 <= date2 ? json1 : json2;
},
type: 'MyConsolidationService'
});
// json1 — earlier start date
var json1 = {
sys_id: { value: "a1b2c3d4e5f6" },
table: "sn_pss_core_service_contract_line",
attributes: {
product_offering: { value: "po_abc123" },
quantity: { value: "5" },
start_date: { value: "2024-01-01" }
}
};
// json2 — later start date
var json2 = {
sys_id: { value: "f6e5d4c3b2a1" },
table: "sn_pss_core_service_contract_line",
attributes: {
product_offering: { value: "po_abc123" },
quantity: { value: "3" },
start_date: { value: "2024-06-01" }
}
};
var result = new MyConsolidationService().getPrimary(json1, json2);
Output:
// result === json1 → true
// "2024-01-01" <= "2024-06-01" is true, so json1 (earlier start date) is returned
{
sys_id: { value: "a1b2c3d4e5f6" },
table: "sn_pss_core_service_contract_line",
attributes: {
product_offering: { value: "po_abc123" },
quantity: { value: "5" },
start_date: { value: "2024-01-01" }
}
}
ConsolidationService - overrideAttributeValues(Object json1, Object json2, Object consolidatedJSON)
Overridable method, called after two JSONs are consolidated, for updating attributes on the consolidated JSON. The base implementation is a no-op if not overridden.
Common use cases include quantity summation, date range calculation (earliest start / latest end), term recalculation, and consolidated_from tracking.
| Name | Type | Description |
|---|---|---|
| json1 | Object | First entity JSON that was consolidated. This is the primary JSON (as determined by getPrimary()). Contains original attributes before consolidation. |
| json2 | Object | Second entity JSON that was consolidated. This is the secondary JSON. Contains original attributes before consolidation. |
| consolidatedJSON | Object | The result JSON after merging. Modify this object's attributes directly to apply custom logic. Initially contains a deep copy of the primary JSON's attributes with merged child arrays. |
| Type | Description |
|---|---|
| void | This method doesn't return a value. Modify the consolidatedJSON object directly. |
var MyConsolidationService = Class.create();
MyConsolidationService.prototype = Object.extendsObject(sn_l2c_core.ConsolidationService, {
enableConsolidation: function() {
return true;
},
overrideAttributeValues: function(json1, json2, consolidatedJSON) {
// Sum quantities from both entities; fall back to 0 if quantity has no value
var qty1 = parseInt(json1.attributes.quantity ? json1.attributes.quantity.value : "0");
var qty2 = parseInt(json2.attributes.quantity ? json2.attributes.quantity.value : "0");
consolidatedJSON.attributes.quantity = {
"value": String(qty1 + qty2)
};
// Use the earliest start date; fall back to empty string if start_date has no value
var start1 = json1.attributes.start_date ? json1.attributes.start_date.value : "";
var start2 = json2.attributes.start_date ? json2.attributes.start_date.value : "";
consolidatedJSON.attributes.start_date = {
"value": start1 <= start2 ? start1 : start2
};
// Use the latest end date; fall back to empty string if end_date has no value
var end1 = json1.attributes.end_date ? json1.attributes.end_date.value : "";
var end2 = json2.attributes.end_date ? json2.attributes.end_date.value : "";
consolidatedJSON.attributes.end_date = {
"value": end1 >= end2 ? end1 : end2
};
// Record the sys_ids of the source entities that were merged into this consolidated result
var consolidatedFrom = [];
if (json1.sys_id) consolidatedFrom.push(json1.sys_id);
if (json2.sys_id) consolidatedFrom.push(json2.sys_id);
consolidatedJSON.attributes.consolidated_from = {
"value": consolidatedFrom.join(",")
};
},
type: 'MyConsolidationService'
});ConsolidationService - postHierarchyConsolidation(Object consolidatedJSON)
Overridable method that applies final modifications to the consolidated JSON after hierarchy consolidation is complete. The base implementation is a no-op if not overridden.
The system calls this method on the final consolidated result in the consolidate() method, and also on each result entity within processHashGroup().
| Name | Type | Description |
|---|---|---|
| consolidatedJSON | Object | Fully processed consolidated JSON object after all merging and consolidation is complete. Modify this object directly to apply final transformations. |
| Type | Description |
|---|---|
| void | This method doesn't return a value. Modify the consolidatedJSON object directly. |
The following example shows how to override postHierarchyConsolidation() to set a flag on the consolidated entity.
var MyConsolidationService = Class.create();
MyConsolidationService.prototype = Object.extendsObject(sn_l2c_core.ConsolidationService, {
enableConsolidation: function() {
return true;
},
postHierarchyConsolidation: function(consolidatedJSON) {
if (consolidatedJSON && consolidatedJSON.attributes) {
consolidatedJSON.attributes.is_consolidated = {
"value": "true"
};
}
},
type: 'MyConsolidationService'
});
ConsolidationService - preProcess(Object sourceJSON, Object targetJSON, Object additionalParams)
Overridable method called before merge and consolidation for performing custom pre-processing tasks such as bulk map creation or caching lookup data.
Store computed results on the this object (for example, this.targetHeaderId = "sample_sys_id"). This method doesn't return any value.
| Name | Type | Description |
|---|---|---|
| sourceJSON | Object | Output of sourceJSON to consolidate. Accepts the JSON output of the LeadtoCashCore - Scoped createInstance() or effect() method. Can be a single entity JSON object, or a JSON object containing an items array of multiple entity JSONs. Can be null or empty. |
| targetJSON | Object | Required. Target entity JSON for consolidation. |
| additionalParams | Object | Optional. Additional data passed from the caller. |
| Type | Description |
|---|---|
| void | This method doesn't return any value. Store computed results on the this object for use in subsequent consolidation steps. |
The following example shows how to override preProcess() to cache a target header ID for use during consolidation.
var MyConsolidationService = Class.create();
MyConsolidationService.prototype = Object.extendsObject(sn_l2c_core.ConsolidationService, {
enableConsolidation: function() {
return true;
},
preProcess: function(sourceJSON, targetJSON, additionalParams) {
// Cache the target entity's sys_id for use in subsequent consolidation steps
this.targetHeaderId = targetJSON.sys_id;
// If sourceJSON and sourceJSON.items are both present, store the item count; otherwise default to 0
this.sourceCount = sourceJSON && sourceJSON.items ? sourceJSON.items.length : 0;
},
type: 'MyConsolidationService'
});