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

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

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

Tall tiles media is not visible

(4) ShareShare
ReportReport
Posted on by 90
I am not able to see media stored in the field of the custom table, but the same image if I upload it on an item, then able to see it. Any idea on how to achieve this.


I am using this logic to import file
FileName := FileManagement.BLOBImport(Tempblob, 'Select a file to import');
                            Tempblob.CreateInStream(InsTream);
                            Rec.Init();
                            Rec."File Content".ImportStream(InsTream, FileName, FileManagement.GetExtension(FileName));
                            Rec."File Name" := FileManagement.GetFileNameWithoutExtension(FileName);
                            Rec."File Extension" := FileManagement.GetExtension(FileName);
                            Rec.Insert();
I have the same question (0)
  • Suggested answer
    Montassar Krichi Profile Picture
    231 on at
    HI,
    The issue you're encountering typically occurs because the images are not being properly imported into Business Central's Media or MediaSet field type.
    you're using BLOBImport and importing it into a File Content field — but:
    • If File Content is a Blob, it won't display a preview in the UI like media does.
    • Business Central requires that images be stored in Media or MediaSet fields for previewing (especially on list pages or cards).
    Change your field to be of type Media (or MediaSet if you want multiple images), and use the proper ImportStream overload on Media:

    FileName := FileManagement.BLOBImport(Tempblob, 'Select a file to import');
    Tempblob.CreateInStream(InStream);

    Rec.Init();
    Rec."Image Media".ImportStream(InStream, FileName); // Assuming "Image Media" is of type Media
    Rec."File Name" := FileManagement.GetFileNameWithoutExtension(FileName);
    Rec."File Extension" := FileManagement.GetExtension(FileName);
    Rec.Insert();
     
     
    If you find this helpful, please mark it as verified :)
  • Suggested answer
    YUN ZHU Profile Picture
    101,202 Super User 2026 Season 1 on at
    Confirm two points
    1. Is it a media field?
    2. Check whether the image was uploaded successfully, for example, if you add a download/export button, check whether it can be downloaded.
     
    Hope this can give you some hints.
    Thanks.
    ZHU
  • SalbaZamam Profile Picture
    90 on at
    @YUN ZHU  @Montassar Krichi It is a media field.

    also I am able to download it correctly


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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the April Top 10 Community Leaders

These are the community rock stars!

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

#1
OussamaSabbouh Profile Picture

OussamaSabbouh 2,233 Super User 2026 Season 1

#2
YUN ZHU Profile Picture

YUN ZHU 1,360 Super User 2026 Season 1

#3
AndrewThomas81 Profile Picture

AndrewThomas81 1,216

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans