Hi,
I'm trying to download a CSV file (Created with CSV Buffer)
Using procedure:
Can anyone help with resolving this problem?
Thanks, Hasnain Ali. it's working.
Hi Abdullah,
You will have to use SaveDataToBlob procedure and DownloadStream to download it.
For this, convert csv to InStream. You can use Temp Blob.
Example:
TempCSVBuffer.SaveDataToBlob(TempBlob, ';');
';' is the seperator here.
TempBlob.CreateInStream(InStream, TEXTENCODING::UTF8);
DownloadFromStream(InStream, '', '', '', 'Your file name here with extension');
Hope this will work
Here is also some additional info about handling files though a stream.
You have to go through a stream to download the content,
Erik has made a great video about this that can be good to watch.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,134 Super User 2024 Season 2
Martin Dráb 229,928 Most Valuable Professional
nmaenpaa 101,156