Hello,
I want to generate CSV file and send it via mail. There are smart services through we can generate CSV file but in this case my data is not stored in tables.
Please see below:
Functionality to generate CSV file on demand and send it to the User.
In this Case since data is not yet saved in Appian tables, fetch inputs from Process Variables and generate the CSV when User clicks the button.
Can anyone help me in this?
Thanks
Discussion posts and replies are publicly visible
A CSV file is just a text file using commas to separate values in a row and new-lines to separate rows.
Create a text file with a place holder like "###data###" and store it as template.csv. Then use the "Text from Template" smart service to write any text to it.
I tried the same way and it worked out. Thank you so much.