Can you write an AL script to run the report instead of assignment as Sub link in action . As per error message , necessary filters are not applied in page action . You can add certain filters and verify .
Below is sample
var
CustomerRec: Record Customer;
SalesReport: Report "Salesperson - Sales Statistics";
begin
CustomerRec.SetCurrentKey("No.");
CustomerRec.SetFilter("Salesperson Code", 'JR|PS');
SalesReport.SetTableView(CustomerRec);
If you feel this helped , please mark as "Verified"
Regards
Pallavi Phade
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.