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 / My NAV Notes / AL Development in Business ...

AL Development in Business Central – Part 5 How to create a table extension

Community Member Profile Picture Community Member

To create a table extension you need to define the following things:

  • The TableExtension ID and Name
  • Which table to extend
  • The new field ID and Name, DataType, Caption and DataClassification

More information about the DataClassification property can be found on Microsoft Docs: https://docs.microsoft.com/nl-be/dynamics-nav/dataclassification-property

An example:

tableextension 50100 "Customer Extension" extends Customer
{
    fields
    {
        field(50000; Skilled; Boolean)
        {
            DataClassification = ToBeClassified;
        }
    }
}

Don’t forget to extend the relevant pages with the new fields so that users can also see this new field when they open the customer card or customer list. In the post post I will show how to extends the pages and demonstrate how this will look to the user.


This was originally posted here.

Comments

*This post is locked for comments