Skip to main content

Notifications

Announcements

No record found.

Small and medium business | Business Central, N...
Suggested answer

Downloading file from Blob Field

(1) ShareShare
ReportReport
Posted on by 8
I created custom table with blob field called 'certification' and card for this table. And actions for download/uploading. Both action works without any error but after downloading .pdf file, it does not open and shows error: /Failed to load PDF document./. But it worked fine with 3kb file. Is there size limit for blob field? Or should I use different approach for uploading file to my custom table?

Code for download/upload
procedure UploadFile(DocumentInStream: InStream; FileName: Text)
    var
        OStream: OutStream;
    begin
        Rec.certification.CreateOutStream(OStream);
        CopyStream(OStream, DocumentInStream);
        Modify(true);
    end;
 
    procedure DownloadFile()
    var
        IStream: InStream;
        ExportFileName: Text;
    begin
        ExportFileName := Rec.companyName + ' - ' + Format(Rec.SystemCreatedAt) + '.pdf';
        Rec.CalcFields(Rec.certification);
        If Rec.certification.HasValue then begin
            Rec.certification.CreateInStream(IStream);
            DownloadFromStream(IStream, 'Download', '', '', ExportFileName);
        end;
    end;
  • Shivi1307 Profile Picture
    Shivi1307 13 on at
  • Suggested answer
    gdrenteria Profile Picture
    gdrenteria 13,116 Most Valuable Professional on at

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

Congratulations 2024 Spotlight Honorees

Kudos to all of our 2024 community stars! 🎉

Meet the Top 10 leaders for December

Congratulations to our December super stars! 🥳

Start Your Super User Journey

Join the ranks of our community heros! 🦹

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,784 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,476 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans