Request Form and Reports

Sapphire123Sapphire123 Member Posts: 112
Hi All:

How do I avoid the request form for a report? When I click a button to run a report, I do not want the report's request form to pop up - Instead, I want it to directly print.

Any suggestions?
Thanks!

Answers

  • Revolution1210Revolution1210 Member Posts: 161
    You can either set the UseReqForm property on the report to No

    Or, if you want to control it programatically you can do so like this:
    YourReportVar.USEREQUESTFORM(FALSE);
    YourReportVar.RUN;
    
    Ian

    www.NextEqualZero.com
    A technical eye on Dynamics NAV
  • Sapphire123Sapphire123 Member Posts: 112
    thanks - i just came across that property...
Sign In or Register to comment.