D365 Business Central : Create View in AL
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.
1 Response
[…] Create View in AL […]