How to create an automatic report

DurandDurand Member Posts: 61
edited 2001-09-05 in Navision Financials
Hello,
I desire to create a procedure allowing me to throw(launch) a report automatically, without passing through the Resquest Form of the options with validation.
I have to try in several ways like
OnInit()
ACTION::OK;
without succes...
Thank you.

Benoît
formateur@ideaa.com

Comments

  • John_TegelaarJohn_Tegelaar Member Posts: 159
    When you call your report from within code, use the method
    REPORT.RUNMODAL(ReportNumber [, ReqWindow] [, SystemPrinter] [, Record])

    Put ReqWindow to FALSE and no requestform will show.

    Or alternatively, you can also set the property UseReqForm to false at design-time.

    John
Sign In or Register to comment.