Every now and then you need a selection of records from a list page. To get the selection you need to add a global function like this:
PROCEDURE GetSelectionFilter@50000(VAR SalesShipmentHeader@50001 : Record 110);
BEGIN
CurrPage.SETSELECTIONFILTER(SalesShipmentHeader);
END;
Wouldn’t it be great if we can directly call for example PostedSalesShipments.GETSELECTIONFILTER(SalesShipmentHeader) by default?