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:
- Take on example, develop a new page in BC d365 having source table “Record Link” as shown.

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.