ContributionsMost RecentMost LikesSolutionsRe: Rest post snap giving different response from Postman Hi @yash.verma Can you please, tell more details about your payload and settings of Postman The same payload , same url, returns correct response from Postman, but not at your rest post snap… Try with removing the JSON.stringify() function from the HTTP entity field. BR Dimche Re: Sql execute Hello @munish If else condition can be written in SQL execute snap with CASE statement. Example bellow: Select EmployeeName,Salary CASE WHEN Salary > 70000 AND Salary < 100000 THEN ‘Senior’ WHEN Salary < 70000 THEN ‘Junior’ ELSE ‘Executive’ END as Position from EmployeesTable Re: Parsing the string as a csv Hello @vgupta Here is a sample pipeline where your dataset is parsed. test7_2020_09_01.slp (6.9 KB) BR Dimche Saveski Re: Pipeline Execution Duration Hello @skodali There isn’t a way to know execution time of the pipeline in real time, while pipeline still running. Because of that we can’t calculate exceeding the anticipated time, so we can send notification. But there is an option to stop pipeline execution if it exceeded the anticipated time.That is timeout option when you create task. BR Dimche Saveski Re: Convert CSV to required format @skodali Glad to help you BR Re: Convert CSV to required format Just add “requiredResult” before the “values” field in the last mapper of the pipeline, like this Re: Convert CSV to required format I’ve tried to achieve structure like your original post requirements, on the left is result on the right requirements: Maybe you like to achhieve Row1 : Column1 key value pairs? BR Re: Traverse through an array Hello @shreegeet I’ve come up with a solution with a diff snap, that includes splitting the arrays… Please see the pipeline , unmodified view of the Diff snap contains elements that are present in the both arrays. test3_2020_06_12.slp (10.5 KB) BR Dimche Saveski Re: Convert CSV to required format N number or rows should be bigger than number of expected input records. If you expecting 100 records , set that number 700 , just to be on the safe side. P.s Updated the pipeline and the file BR Re: Convert CSV to required format @skodali I’ve updated the example pipeline in the post above to achieve the desired json structure, please check it BR