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
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