ContributionsMost RecentMost LikesSolutionsRe: Add single quotes in comma separated string ‘"+ $yourfield.split(’,‘).join(’','‘) +"’ Re: Reusable pipeline- Unable to fetch variable value in child pipeline -Snowflake Snap You need to set _name if you are going to use “Pipeline Parameter” You can use “Document Parameters” and they are referenced with $. Lokk at the output of Snowflake - Execute by clicking the Red doc icon, this will show into the next snap. ie is output is “tableName”: “table1” then change select to "select * from " $tableName Re: Reusable pipeline- Unable to fetch variable value in child pipeline -Snowflake Snap Why not have the output on Master pipeline be a document list where each document is a command. Then the child pipe runs 1 command, they will all get called and the output will results in ach documents which can be processed separately or merged into 1 doc Re: Connecting SQL server in snap logic you should not need server name and it listed in front of user name enter the data the same way you would on SSMS Re: How to access Parameters passed in pipeline in the mapper snap @vkandalam The key to accessing pipeline parameters is you use an _ rather than the normal $ for doc values Re: Pad field with zero This is the one I always use Where 9 is the size you want and text2 is you data (-9 negative of size you want) ‘0’.repeat(9).concat(text2).slice(-9) Explain: text1 = “000000000”; //length you want text2 = “1234”; result = “000000000”.concat(text2); 0000000001234 //returns last number of characters let result2 = result.slice(-9); //length you want 000001234 ‘0’.repeat(9).concat(text2).slice(-9) Re: Fetching query from configuration file @rashmi Yuo could simply read in the config file, parse it, and format the data with a mapper, then send that as your Query string Re: Check if the element in the array is empty or not @nikola.k.popovski you could use a Find() which would return all the objects with group1.length==0, then see how many there are or process then ie $test.Find(data->data.group1.length==0) Re: Fields are auto appended at the end @Harsha3 Could those be a CRLF, ie someone presses Alt-Enter/Enter while entering in the values or copies them from some with CRLF? Re: Mapper Snap JSON expression Just write it like this jsonPath($, “$address[0].state”) ? jsonPath($, “$address[0].state”) : null