Hi Tom, Many thanks for your response. Can I check, if I dont need the line breaks in between the rows in my output, how can i achieve the same? Sorry, the requirement changed a bit and I am trying to explore how can I get rid of the line breaks. So currently, the output file looks like this: {"source":{"name":"SCBSG"} ,"customer": {"name":"010000000009568G" ,"custom_fields": [{"name":"cashone" ,"value":"Y" } ,{"name":"ccft" ,"value":"N" } ,{"name":"wealth" ,"value":"Y" } ] } } {"source":{"name":"SCBSG"} ,"customer": {"name":"0100000000035987K" ,"custom_fields": [{"name":"cashone" ,"value":"Y" } ,{"name":"ccft" ,"value":"N" } ,{"name":"wealth" ,"value":"Y" } ] } } Instead of this, I would like the output to be like this: {"source":{"name":"SCBSG"},"customer":{"name":"010000000009568G","custom_fields":[{"name":"cashone","value":"Y"},{"name":"ccft","value":"N"},{ "name":"wealth","value":"Y"}]}} {"source":{"name":"SCBSG"},"customer":{"name":"0100000000035987K","custom_fields":[{"name":"cashone","value":"Y"},{"name":"ccft","value":"N"},{ "name":"wealth","value":"Y"}]}} Is this possible to be achieved?
... View more