Hi Kevin
Thanks for your input. I am using the below code to open CSV. I have tried by installing CSV reading into mobile. But no help. when I try to open from Fiori client, nothing is happening, no error messages.
var uri = 'data:application/csv;charset=utf-8,' + encodeURIComponent(CSVContent);
var link = document.createElement("a","visibility:hidden");
link.href = uri;
link.download = "Test.csv";
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
Regards
Sreenivas