Hi,
Need a little piece of information on using SetFilter for a page by using multiple filters.
For E.g. in the jobs List i want to filter the Jobs page using Blocked and the Status Field through an extension.
How could I achieve this,
my present code of using SetFilter not working using two fields one after the other,it somehow overwrites the first condition to the second consition.
trigger OnOpenPage()
var
JobBlocked: Enum "Job Blocked";
JobStatus: Enum "Job Status";
begin
Rec.SetFilter(Rec.Status, '<>%1', JobStatus::Completed);
Rec.SetFilter(Rec.Blocked, '%1', JobBlocked::" ");
end;
Thanks
Indira