MakeReport - method of the PmaReport object
Description:
The method creates the output report from the currently loaded tamplate report file (defined in the
SourceFile property) and with currently valid keyword values (defined by the
SetKeyValue method).
Syntax:
Empty MakeReport()
Note:
The method serves for manual creation of the output report from the application (see the manual procedure described in the
PmaReport object), if the automatic procedure using the
onReportRequest event is not used. The output report in the
cache object is replaced by the new output report.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oReport = pMe.Pm("/Report");
oReport.MakeReport();
Dim oReport
Set oReport = pMe.Pm("/Report")
oReport.MakeReport