LC0049 - StefanMaron/BusinessCentral.LinterCop GitHub Wiki
SourceTable
property not defined on Page.
Checks for the GetRecord, SetRecord, SetSelectionFilter and SetTableView methods on a Page variable, where the Page itself doesn't have a SourceTable
defined.
local procedure SetMyPassword()
var
UserSecID: Record User;
SetPassword: Page "Password Dialog";
begin
SetPassword.SetRecord(UserSecID);
end;
SourceTable property not defined on Page 'System.Security.AccessControl."Password Dialog"'