How to display Value of RECORDID Data Type in Page in BC D365

Display Value of RECORDID Data Type in Page in BC D365:

Step 01:

  • “RECORDID” contains the table number and primary key information of a table.
  • Set filters is applied on full value not on partially value.
  • You cannot use GET function to get record in a table.

Step 02:

record link in dyamics 365
page 50023 RecordLink
{
PageType = List;
ApplicationArea = All;
UsageCategory = Lists;
SourceTable = “Record Link”;
layout
{
area(Content)
{
repeater(GroupName)
{
field(Name; format(Rec.”Record ID”))
{
ApplicationArea = All;
}
}
}
}
  • “Format” function is used for-display value of “RecordID” in Page. If “Format” function is not used as per the above image, then at the time of open page “RecordID“ column shows null value.

Main Features of Dynamics 365 Business Central
Extension Fields Not Visible in Page in D365 WebClient- Solved
How to configure or use other extensions in BC D365 via dependencies Settings
RecordId Method– Microsoft Docs

Leave a Reply