web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Small and medium business | Business Central, N...
Answered

Simple: Convert Text to Instream

(0) ShareShare
ReportReport
Posted on by 40

Is there a simple and nice way to convert a Text variable to an Instream?

I just want to enable the user to download a file, whose content I already store using a Text var.

My dirty way works as following, but the Record TempBlob is marked for removal:

var
    fileName: Text;
    fileContent: Text;
    istream: InStream;
    oStream: OutStream;
    tempBlob: Record TempBlob temporary;
begin
    // Here some code to fill fileContent and fileName
    tempBlob.WriteAsText(fileContent, TextEncoding::UTF8);
    tempBlob.Blob.CreateInStream(istream, TextEncoding::UTF8);
    DownloadFromStream(istream, 'Export', '', 'All Files (*.*)|*.*', file_name);
end;

I have the same question (0)
  • Suggested answer
    Mohana Yadav Profile Picture
    60,999 Super User 2025 Season 2 on at

    Please try function FromBase64 in codeunit 4110 "Base64 Convert"

  • Verified answer
    Binesh Profile Picture
    7,885 on at

    Hello,

    Go for  Mohana Yadav suggestions you will get some idea.

    Or else by little bit changes on your code will work as shown below.

    procedure DownloadTextToStream()
        var
            fileName: Text;
            fileContent: Text;
            istream: InStream;
            oStream: OutStream;
            tempBlob: Codeunit "Temp Blob";
        begin
            // Here some code to fill fileContent and fileName
            Clear(tempBlob);
            tempBlob.CreateOutStream(oStream, TEXTENCODING::UTF8);
            oStream.WriteText(fileContent);
            tempBlob.CreateInStream(istream);
            DownloadFromStream(istream, 'Export', '', 'All Files (*.*)|*.*', fileName);
        end;

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > Small and medium business | Business Central, NAV, RMS

#1
OussamaSabbouh Profile Picture

OussamaSabbouh 3,151

#2
Jainam M. Kothari Profile Picture

Jainam M. Kothari 1,443 Super User 2025 Season 2

#3
YUN ZHU Profile Picture

YUN ZHU 1,092 Super User 2025 Season 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans