Skip to main content

Generic way of Attaching Documents on any Record of the Page in Microsoft Dynamics Business Central - Template Code

Problem Statement:

In Microsoft Business Central, there is a way to attach attachments only on Documents or Master Table records. But, what if this requirement is for other tables such as Opportunities, custom tables, etc.

Introduction:

I have seen many developers afraid to touch the attachment-related customization as it seems complicated.
Well, I have found a solution and here it goes.
In this blog, I'm attempting to create a generic template for code that needs to have an attachment feature on any table that you like using AL Code.
This means that you simply cannot copy-paste the same code for all the tables but a simple change in variable sub-type will ease your work significantly

Pre-requisites:

  • Microsoft Dynamics Business Central
  • VS Code
  • Al Language Extension

Source Code:

Demonstration:

1. How it works:
Document Attachment is a table which stores a few things that help in tracking information related to the attachment
Document Attachment Table Fields

The main unique thing that works for all the different tables is the TableID, Line No and No. fields.
Along with this, the document is attached through a stream inside a Media DataType.

There are 2 important functions
1. SaveAttachment2 : This function takes a few parameters RecRef for origin Table ID, FileName to
store the file name, Blob which will be imported a Stream in Document Reference ID Media type field,
Recs.No which will store the unique record for which the attachment is attached.
This function when the line has no attachment attached to it. This is done by checking if the field
Document Reference ID has no value.
SaveAttachment2


2. Export2: This function exports the attached BLOB to a file. This is done if the Document
Reference ID field has any value.
Export2

This is both functions are complimentary of each other and are trigger on FileName field DrillDown
DrillDown to Attach OR Export


2. Things that you need to change:
Either you are using the Generic Attachment Template code first time or mulitple times in the same project, you need to find //Change the Table Name Here----OLISTER and //Change the Page Name Here----OLISTER comment and replace your table name. Also, you will need to manage with the PageName and IDs. Read through README.TXT in the project.
README.TXT



3. Custom Attachments for multiple tables:
In the above case, I have created the code for the Opportunity Card page. I will repeat the same for Item Card Page.
Prior to Items Card Page
Make a copy of all the 3 Pages and change their names and Ids.

After adding a new set of pages for different tables

Change the Table Nos on the comment line //Change the Table Name Here----OLISTER and
//Change the Page Name Here----OLISTER
After changing Table Names
After changing Page Names
After changing Part Page Names

4. Output:
Finally, I got this.
Opportunities Attachment
Items Attachment

Conclusion:

Thus, we are successful in creating a generic code template for attachments.

Hope this helps!

Comments

  1. What about the Temp Blob Codeunit. As it is not there in standard BC 14.0

    ReplyDelete
  2. Hi Anik,
    TempBlob Codeunit in BC15.0 is the same as TempBlob Table in BC14.0.
    You will need to upgrade your app to make it compatible with BC15.0.
    Refer by Blog on this https://www.olisterr.tech/2019/12/Per-Tenant-Code-Upgrade-for-Business-Central-version15.html

    For BC14.0 you can use TempBlob Table though.

    Thanks.
    Olister Rumao

    ReplyDelete
  3. Thank you, it was very helpful!!

    ReplyDelete
  4. Hi Olister,

    This is very helpful thank you and have it successfully working for opportunities. I want to add attachments to the Lot No. Information (table 6505) and have made all the changes you suggest plus in a few places changed No. to Lot No. because the No. field doesn't exist in this table. Unfortunately it isn't working. The link in the drill down does nothing.

    To test it I've expanded the list page to show the Table ID, No. and Line No. and both Table ID and Line No. are blank. If I manually enter the table number then the drill down works, the file uploads but doesn't link to the Lot No. and hence is not displayed in the list (but is in the Document Attachment table 1173).

    The other difference I can see is that the Lot No. Information table has three fields (Item No., Variant Code and Lot No.) in its key.

    Any help our guidance you can provide will be greatly appreciated.

    ReplyDelete

Post a Comment

Let me know your comments below. I'll try my best to answer your comment

Popular posts from this blog

Something went wrong. An Error occurred - Error Resolution

Introduction: With the installation of NAV 2018 or BC On-premise, I have observed that when creating New Server Instance and New WebServer Instance, you will get the error 'Something went wrong. An Error occurred '. I referred to the community questions below but didn't find my resolution. Hence, I decided to write this blog. Pre-requisites: Microsoft Dynamics Business Central - On-Premise / NAV 2018 Understanding of Business Central Authentication  Books & References: https://community.dynamics.com/nav/f/microsoft-dynamics-nav-forum/261301/nav-2018-web-client-an-error-has-occurred https://community.dynamics.com/business/f/dynamics-365-business-central-forum/421987/error-something-went-wrong-an-error-has-occurred-azure-ad-tenant Demonstration: 1. Creation of NAVServerInstance: In order to create NAVServerInstance, you can either add the Server Instance through Business Central Administration or Powershell command. Add Instance - Business Central Administration Add Insta

Setting up OAuth Authentication for Business Central Web Services / APIs

Introduction: After upgrading Business Central to version 17 (Wave2 2020), I found that there was an error telling me that WebService Key is going to be deprecated soon. Web Service Access Key is deprecated. Hence, I decided to explore and probably make it easier through this blog. Pre- requisites : Admin Access to Office 365 Admin Access to Azure Demonstration: 1. App Registration on Azure Portal: To enable OAuth authentication for any apps in Azure Active Directory, you will need to perform App Registration and set up the permissions and security details. i.) Register the App: Search for 'App Registration' on the Azure Portal. Click on New Registration Type in the App Names, Account Types and Redirect URI. Registering Application ii.) Setup API Permissions: Go to API Permissions > Add Permissions > Business Central App > Select Delegated Permissions > Select Other Permissions and Financials > Add Permissions Button. Setup API Permissions iii.) Setup Client Secr

Business Central Environment Blinking after update to v20

Introduction: Business Central Updates after updating to version 20.x, there is a common problem which is observed. The Business Central environment starts blinking as per the video below - Pre- requisites : Business Central Online  v20 Demonstration: 1. Restart the Business Central Environment: Go to Business Central Admin Center > Select the Environment >Sessions > Restart Environment. 2. Ensure that your URL contains Tenant ID: When you login into the Business Central Environment, make sure that your links are in the following formats Sandbox : https://businesscentral.dynamics.com/<SandboxEnvironmentName>/?sandbox=true Production : https://businesscentral.dynamics.com/<ProductionEnvironmentName>/ If you URL like https://businesscentral.dynamics.com/SandboxName or any other format without Tenant ID, chances are that you will end up with the issue. Also, you can login through Admin Center URL -  Connect from URL in BC Admin Center 3. Check the status if the insta