ContributionsMost RecentMost LikesSolutionsRe: Loading jsonb postgres data Hi @anayak If you are able to load it as TEXT easiest fix would be in the mapper to use JSON.stringify(value) function. This function will convert your value into JSON string. Also you can try to insert your records with “PostgreSQL - Bulk Load” or with “PostgreSQL - Execute” snaps. Regards, Pero Manchevski Re: Editing JSON for CSVParser to add hundreds of headers Hi @anayak You have a typo in the json file it should be “columns” not “column”, also i don’t know if it’s on purpose but you have extra white space in the names for the columns. Regards, Pero Manchevski Re: Executing different SOAP request's based on input field value Hello @arunnp The provided JSON in the ExecuteApplicationResult field it’s not valid json. The main issue is the double quotes after string “Windows” You can try to remove it with regex, but that won’t guarantee that this will be working solution in the future. Try to map it ExecuteApplicationResult to result and pass it like that. Regards, Pero Manchevski Re: Write expression for conditional check Hello @Sahil Did you try to use it XLST transformer snap? It transforms your incoming data by applying the XSL transformation rules. You don’t need to map it by hand. Regards, Pero Manchevski