ContributionsMost RecentMost LikesSolutionsSnaplogic be integrated with Github enterprise version? Can Snaplogic be integrated with the Github Enterprise version to perform Git operations in the Manager UI? Re: Mapping the columns matching from the Array Amazing @viktor_n. I made a little change and your trick worked perfectly. You deserve an award 🙂 I will be using it in my original pipeline to see the same result. Would mind clarifying the “findIndex()” used here? I transformed the column mapping accordingly. Not an issue. Mapping the columns matching from the Array Hello SnapLogic Experts, I require your help in mapping expression to map the keys(columns). I need to change the column names in the incoming data according to the mapping list that I have and load it into the database. I’m trying to achieve it using mapKeys() but missing something. I really need someone’s advice to make it. I would be grateful if anyone can solve it. 🙂 Input data: [ { “ID”:1, “NAME”:“testuser” } ] Column mapping data from parameter: [ { “src_col_name”: “ID”, “tgt_col_name”: “sys_id” }, { “src_col_name”: “NAME”, “tgt_col_name”: “user_name” } ] Expected output: { “sys_id”:1, “user_name”:“testuser” } Thank you. Re: Looking for a Call notification solution Thanks for the response @Spiro_Taleski. I’ve already gone through this. It can send a notification message to a Slack channel/user but not over a Slack call. A call notification is what we’re looking for. Could you please share any workarounds you are aware of? I would like to know more. Looking for a Call notification solution Hi SnapLogic Experts, SnapLogic currently allows us to set up email notifications for task failures. However, during off-work hours, we are missing email notifications for critical job failures. To address the issue, we’d like to implement a solution that sends a phone call or a Teams chat call when an execution fails. SnapLogic doesn’t appear to have an in-built feature for this, so we’re looking for a workaround or a third-party application integration. We’re also looking to see if Microsoft provides a call notification feature from Office 365 apps. I’m hoping that this has already been implemented by someone who can assist us in sharing information about it. Any information about this would be greatly appreciated. Thanks. Re: How to capture the Trigger task API headers This is also helpful in one way but have to make little changes at the client end. I tried pipe.args suggested by @bojanvelevski and that is straight forward to capture all. Anyway, thank you much for responding @viktor_n. Re: How to capture the Trigger task API headers pipe.args function worked simply. Thank you very much, @bojanvelevski How to capture the Trigger task API headers Hi, I want to capture all the headers passed to a Triggered task. Generally they are hidden in the Pipeline Parameters in a triggered execution. Based on a header ‘User-Agent’ we have to take an action. Could someone please help with info on this? Re: Cumulative sum of a value in an array Absolutely, Bojan. The slice was the one I missed. I appreciate your help on this. Re: Cumulative sum of a value in an array This is perfect @bojanvelevski I was trying with index, map and your expression is better than mine. 🙂 Would you mind explaining the reduce function used here?