From 8203cb0a35f6439380000cc7406e46e018606634 Mon Sep 17 00:00:00 2001 From: Mads Gram Date: Fri, 3 Jul 2026 12:53:09 +0200 Subject: [PATCH 1/2] Remove add/edit/delete UI elements from Table Data Management - Card page Set InsertAllowed, DeleteAllowed, and Editable to false on page 8705 "Table Information Card" so the New, Delete, and Edit actions no longer appear. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../App/Table Information/src/TableInformationCard.Page.al | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/System Application/App/Table Information/src/TableInformationCard.Page.al b/src/System Application/App/Table Information/src/TableInformationCard.Page.al index 3dbffb0ff3..3322559835 100644 --- a/src/System Application/App/Table Information/src/TableInformationCard.Page.al +++ b/src/System Application/App/Table Information/src/TableInformationCard.Page.al @@ -18,6 +18,9 @@ page 8705 "Table Information Card" AdditionalSearchTerms = 'Database,Size,Storage'; SourceTable = "Table Metadata"; Caption = 'Table Data Management - Card'; + InsertAllowed = false; + DeleteAllowed = false; + Editable = false; DataCaptionExpression = StrSubstNo('%1 - %2', Rec.Name, Rec.ID); Permissions = tabledata "Table Metadata" = r, tabledata "Database Index" = r; From 044d9417d9906f3f5d26ff2cccc0affddee00bc1 Mon Sep 17 00:00:00 2001 From: Mads Gram Date: Fri, 3 Jul 2026 15:38:06 +0200 Subject: [PATCH 2/2] Change to using just the *Allowed since Editable=false also disables the dropdown Copilot incorrectly suggested to use Editable = "false" which breaks the dropdown... --- .../App/Table Information/src/TableInformationCard.Page.al | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System Application/App/Table Information/src/TableInformationCard.Page.al b/src/System Application/App/Table Information/src/TableInformationCard.Page.al index 3322559835..e56e176251 100644 --- a/src/System Application/App/Table Information/src/TableInformationCard.Page.al +++ b/src/System Application/App/Table Information/src/TableInformationCard.Page.al @@ -18,9 +18,9 @@ page 8705 "Table Information Card" AdditionalSearchTerms = 'Database,Size,Storage'; SourceTable = "Table Metadata"; Caption = 'Table Data Management - Card'; - InsertAllowed = false; DeleteAllowed = false; - Editable = false; + InsertAllowed = false; + ModifyAllowed = false; DataCaptionExpression = StrSubstNo('%1 - %2', Rec.Name, Rec.ID); Permissions = tabledata "Table Metadata" = r, tabledata "Database Index" = r;