ContributionsMost RecentMost LikesSolutionsRe: Array of Objects manipulation Did that fulfil your requirement? Re: How to add an object into an array Hello moizB, Please refer to the attached pipeline and let me know if it helps you in achieving the desired output structure. Regards, Aleksandar. Re: Public API to List all Assets in an Organization / Environment Hello satishKumar, You can develop and parametrize your own by using the SnapLogic Metadata Snap Pack. Just make sure the user that you are going to use have access to the desired assets. Please let me know if this helps you. Regards, Aleksandar. Re: An element in an array is present in another array or not Hello lake, You can iterate through one of the arrays using either map or filter (depends on what you want as an output) and check if the current element is present in the second array. Example input: [ { "arr1": [ 1, 2, 3, 4, 5, 6 ], "arr2": [ 3, 4, 5, 6, 7, 8 ] } ] Using map: $arr1.map(x => {"elem": x,"found": $arr2.indexOf(x) != -1}) "compare": [ { "elem": 1, "found": false }, { "elem": 2, "found": false }, { "elem": 3, "found": true }, { "elem": 4, "found": true }, { "elem": 5, "found": true }, { "elem": 6, "found": true } Using filter: $arr1.filter(x => $arr2.indexOf(x) != -1) "present": [ 3, 4, 5, 6 ] You can refer to the attached pipeline and let me know if it helps you. Regards, Aleksandar. Re: Array of Objects manipulation Hello, The functionality of the Group By Fields Snap does that. It groups the documents by the value of fields. Regards, Aleksandar. Re: Array of Objects manipulation Hello @lake, Attached is the sample pipeline for structuring the data as needed: Split the ndc array. Sort and group by num, lotNum, and expDate. Consolidate serialNumber. Reassemble the ndc array. Let me know if you have any questions. Best regards, Aleksandar. Re: Array of objects manipulation Hello lake, Attached is the sample pipeline for structuring the data as needed: Split the ndc array. Sort and group by num, lotNum, and expDate. Consolidate serialNumber. Reassemble the ndc array. Let me know if you have any questions. Best regards, Aleksandar. Re: Hyperlink URL Error in HTML/XML Generator Hello lillyknox, In order to access a Pipeline Parameter in the XML Generator Snap, you have to use the ${_pipelineParamName}. Could you try with the following expression for the link? <a href="${_Link_To_SF_CT_Record}">TEST</a> Try this and let me know if this works for you. Regards, Aleksandar. Re: How to add a snap that does nothing. Please note that this operation (Adding extra Snaps) is not free, as it consumes additional resources. However, the increase in resource usage is expected to be minimal. Re: How to add a snap that does nothing. Hello Pretpark, Could you please try by adding a Filter Snap instead with the following Filter expression: Regards, Aleksandar.