Scheduling a report to run

Hi Patrick Have you ever use NAS? It’s quite easy with 3.70 or more, in 3.60 sp1 or less almost unserviceable. Install NAS, set windows login for administrator, set default printer for report that you need, write some code in codeunit 1 inside nashandler trigger: CASE Parameter OF ‘MAILLOG’: CODEUNIT.RUN(CODEUNIT::“E-Mail Dispatcher”); ‘REPORT’: REPORT.RUN(REPORT::“Inventory Availability”,FALSE); If you need something more complicated like every time that a user print that report it print from NAS, you have to create a table where store report and filter, NAS always active read that table print and delete entries.