Auto run of Report

darshanmdarshanm Member Posts: 280
Hi !

Is there any way, to run the report automatically once
the user logs into the system???

But system should not open the Report request form,
it should execute the report directly.
Darshan Mungekar
Senior Consultan

Comments

  • bbrownbbrown Member Posts: 3,268
    Are you looking to run a report everytime a certains user logs in? In that case you could do something in codeunit 1
    There are no bugs - only undocumented features.
  • MaximusMaximus Member Posts: 105
    You should put this on the end of the function LogInStart in Codeunit 1:

    REPORT.RUN("Name of your report",FALSE,TRUE,RecordVariable);

    Every user that logs in to Navision or calls the Main Menu Form (in the older versions) automatically calls this function.
Sign In or Register to comment.