When creating a Customer from Lead to Customer and run an Entity Saved Search displaying the Customer Records, it might show duplicate records with same InternalID. In Order to avoid that add the following line in the criteria of the saved search. Criteria: Name/ID : does not contain (Originating Lead).
Tag: remove duplicates
Array Merge/ Combine in JS
Merge without removing duplicate elements -> Using concat() Method: The concat() method accepts arrays as arguments and returns the merged array. // with elements of nums1 and returns the // combined array – combinedSum arraylet combinedNums = nums1.concat(nums2, nums3);// More readable formlet combinedNums = [].concat(nums1, nums2, nums3); -> Using spread operator: Spread operator spreads the value of the array into… Continue reading Array Merge/ Combine in JS
Remove duplicates from transaction saved search of Item Receipt
Remove duplicates from transaction saved search of Item Receipt
Function to remove duplicates from the array
Function to remove duplicates from the array
Remove Duplicates from an array
Remove Duplicates from an array
Customer Item Detail record is a unique combination of Item and Customer
This script does not allow the custom record to be saved of a duplicate combination of item and customer name exists.