web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Small and medium business | Business Central, N...
Answered

Hide manage action from list part

(0) ShareShare
ReportReport
Posted on by 305

Hi

I have a list part page on which I want to hide the "Manage" action. I tried to go about with modify() inside area(Processing) but modify() doesn't belong there it seems. Please suggest a possible way to remove it.

Thanks and regards,

Khudeja

  • Verified answer
    Teddy Herryanto (That NAV Guy) Profile Picture
    14,306 Super User 2026 Season 1 on at

    Manage is automatically added depending on the InsertAllowed, ModifyAllowed, and DeleteAllowed property of your page.

  • Verified answer
    Tabrez Ajaz Profile Picture
    789 on at

    Hello Khudeja,

    For base pages, you can't able modify the InsertAllowed, ModifyAllowed and DeleteAllowed properties, and Manage tab actions depend on these properties.

    But for your custom pages, you can set these properties if you don't want a user can add, edit, or remove any item by setting all three properties to false as shown in below example:

    Example:

    page 50140 Listpartpage

    {

       PageType = ListPart;

       ApplicationArea = All;

       UsageCategory = Administration;

       SourceTable = Emp;

       InsertAllowed = false;

       ModifyAllowed = false;

       DeleteAllowed = false;

       layout

       {

           area(Content)

           {

               group(GroupName)

               {

                   field(ID; ID)

                   {

                       ApplicationArea = All;

                   }

                   field(Name; Name)

                   {

                       ApplicationArea = All;

                   }

               }

           }

       }    

       var

           myInt: Integer;

    }

    For base pages like "Sales Order Subform", you can hide all tabs and actions except Manage Tab and it's "New Line" and "Delete Line" actions.

    Let's have a look first how "Sales Order Subform" shown by default on "Sales Order" Page with by default actions:

    Before Modification:

    1drv.ms/.../s!At-UXj6VtUoonhp-q-WdY8kGMcdZ

    The below example helps you understand how you can hide tabs and actions from "Sales Order Subform" except "Manage Tab" and it's "New Line" and "Delete Line" actions, but you can hide "Select Items..." action from "Manage Tab".

    Sample Code: Hide Actions and Tabs from "Sales Order Subform"

    pageextension 50120 HideManageAction extends "Sales Order Subform"

    {    

       actions

       {

           // Add changes to page actions here

           modify(SelectMultiItems)

           {

               Visible = false;

           }

           modify("<Action3>")

           {

               Visible = false;

           }

           modify("F&unctions")

           {

               Visible = false;

           }

           modify(SelectItemSubstitution)

           {

               Visible = false;

           }

           modify(Page)

           {

               Visible = false;

           }

           modify("&Line")

           {

               Visible = false;

           }

           modify("O&rder")

           {

               Visible = false;

           }

           modify("Co&mments")

           {

               Visible = false;

           }

           modify(EditInExcel)

           {

               Visible = false;

           }

       }    

    }

    After modification:

    1drv.ms/.../s!At-UXj6VtUoonhsFQ184hEa6rQYR

    I hope this will help you if you are trying to show or hide any action tabs or it's actions.

    Best Regards,

    Tabrez Ajaz

  • khudeja Profile Picture
    305 on at

    Thank you for the answers. That worked for me!

    Regards

    Khudeja

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Women in Power Builds Momentum

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Small and medium business | Business Central, NAV, RMS

#1
OussamaSabbouh Profile Picture

OussamaSabbouh 711 Super User 2026 Season 2

#2
Teagen Boll Profile Picture

Teagen Boll 377 Super User 2026 Season 2

#3
AndrewThomas81 Profile Picture

AndrewThomas81 367 Super User 2026 Season 2

Last 30 days Overall leaderboard

Featured topics

Microsoft Training Manuals

Product updates

Dynamics 365 release plans