microsoft / ALAppExtensions

Repository for collaboration on Microsoft AL application add-on and localization extensions for Microsoft Dynamics 365 Business Central.
MIT License
748 stars 600 forks source link

[Event Request] codeunit 7017 "Price List Management" - OnAfterClearAssetFilters #26789

Open Duizy1971 opened 4 days ago

Duizy1971 commented 4 days ago

Describe the request

local procedure ClearAssetFilters(var PriceListLine: Record "Price List Line")
begin
    PriceListLine.SetRange("Asset Type");
    PriceListLine.SetRange("Asset No.");
    PriceListLine.SetRange("Variant Code");

    OnAfterClearAssetFilters(PriceListLine);
end;

[IntegrationEvent(false, false)]
local procedure OnAfterClearAssetFilters(var PriceListLine: Record "Price List Line")
begin
end;

Additional context

Pretty please...