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

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Create View in AL

Teddy Herryanto (That NAV Guy) Profile Picture Teddy Herryanto (Th... 14,284 Super User 2025 Season 2

If you are tired of typing the same filters over and over again, the Save View is a great way to help you avoid having to set the respective filters over and over again. It will save time and increase your productivity.

What if you want to do it for all users, here comes the extension development.

Let’s say you want to add a View to Sales Order List for filtering Completely Shipped orders.

pageextension 50001 "SalesOrderListExt" extends "Sales Order List"
{    
    views
    {
        addlast
        {
            view(CompletelyShipped)
            {
                Caption = 'Completely Shipped';
                Filters = where("Completely Shipped" = const(true));
            }
        }
    }
}

Publish the extension and you will see your new View in the Sales Order.


This was originally posted here.

Comments

*This post is locked for comments