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 :
Dynamics 365 Community / Blogs / Hackathon Challenges / CHALLENGE #6 - Access files...

CHALLENGE #6 - Access files stored in Azure Blob Storage (LEVEL 2)

Freddy Kristiansen Profile Picture Freddy Kristiansen

Scenario

To surface a document library stored in Azure Blob Storage in Business Central. The documents only live in Azure Blob Storage but can be accessed through Business Central. The documents can be opened in the browser from an action.

To complete this challenge, you will need

  • A Dynamics 365 Business Central Sandbox Environment
  • Visual Studio Code with the AL Extension installed
    • Azure VMs will have VS Code pre-installed
  • The Url for an Azure Blob Storage with unauthenticated access

 Expected result

Steps

  • Create an empty app
  • Create a new table with the relevant fields to describe an Azure Blob
  • Create a list page on top the new table. The table should be temporary.
  • Create a codeunit to encapsulate the access to Azure Blob Storage and a can populate the new table.
  • Add an action to the page that can open the selected document.

Hints

  • The documentation for Azure Blob Service REST API can be found here https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api. Look for the “List Containers” operation.
  • In VS Code, use Ctrl+Shift+P and type AL GO and remove the customerlist page extension
  • Use the ttable and the tfield snippets to create the table.
  • You can invoke the “List Container” Url directly in a browser to see the returned information.
  • Use the tpage and the tpagefield snippets to create the list page.
  • Use the tcodeunit snippet to create the codeunit.
  • Use the Hyperlink() method to open the document.

Cheat Sheets

  Happy coding Esben Nyhuus Kristoffersen Principal Achitect Passwords: Dote6111, Cujy0673, Xymo2826, Sufo3097, Nyko3952, Veci1100

This was originally posted here.

Comments

*This post is locked for comments