In Microsoft Dynamics 365 Business Central (AL language), the ExtendedDatatype is an AL property that tells the Business Central client to treat the value in a field in a special way—for example as a clickable phone number, an email address, a URL, a masked (hidden) text, a barcode input, a rich text editor, etc. It doesn’t change the stored data type in SQL; it changes how the client renders and interacts with the value.
Extended Data Types
|
Value |
Runtime Version |
Description / Behavior |
|
⚪ None |
v1.0 |
Default value — no special handling or conversion is applied. |
|
📞 PhoneNo |
v1.0 |
Treated as a phone number. Displayed as a clickable hyperlink when not editable. Clicking launches the default dialing app on your device. |
|
🌐 URL |
v1.0 |
Treated as a web address. Displayed as a clickable hyperlink when not editable. Clicking opens the default browser. |
|
|
v1.0 |
Treated as an email address. Displayed as a clickable mail link when not editable. Clicking launches the default mail app. |
|
📊 Ratio |
v1.0 |
Displayed as a progress bar (values between 0.0–1.0). Not supported on the Web client. |
|
🔒 Masked |
v1.0 |
Displays the value as dots (••••) for privacy or security — useful for passwords or sensitive input. |
|
👤 Person |
v1.0 |
Handles media as a profile image, shown in rounded “signature” styling. Displays a silhouette when empty. |
|
📄 Document |
v16.0 |
Handles media as a document, optimizing layout for portrait-oriented content (like PDFs). |
|
🧾 Barcode |
v12.0 |
Treated as a barcode field. On mobile/tablet clients, users can set values using a barcode scanner (camera). |
|
📝 RichContent |
v12.0 |
Enables rich text editing (bold, italic, lists). Requires MultiLine = true and must be alone in its FastTab group. |
These fields work beautifully on both web and mobile clients, making Business Central pages more intuitive and reducing manual steps for end users.
PhoneNo — Make Fields Click-to-Call
ExtendedDatatype = PhoneNo, Business Central renders it as a clickable phone number whenever the page is not editable.URL — Open Web Links
ExtendedDatatype = URL, the text is recognized as a web address and automatically becomes clickable when not editable.EMail — Click to Compose ✉️
ExtendedDatatype = EMail, Business Central recognizes it as an email address. When the page is read-only, it becomes a mail hyperlink that opens your default mail client (like Outlook) with the address pre-filled in the “To” field.Clicking the email field launches your default mail client with the address ready in the “To” field.

Like
Report
*This post is locked for comments