Hi @Shrutii ,
Please use the below code in the JavaScript activity before Data loading activity to convert .json to .csv
var inputFilePath= "/{Your file path}/Test.json"var addKeys = true;var delimiter = ",";convertToCSV(inputFilePath, addKeys, delimiter);function convertToCSV(inputFilePath, ad...