Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Indicates whether the report has been saved to disk.
Syntax
public boolean saved()
Run On
Called
Return Value
Type: boolean
true if the report has been saved to disc; otherwise false.
Remarks
A report in the AOT can only be run if it has been saved to disk.
Examples
static void testReportSaved(args a)
{
report r;
reportRun rr;
r = new report();
r.AddDesign();
print "before save, saved : ", r.Saved(); pause;
r.saved();
print "after save, saved : ", r.Saved(); pause;
rr = new reportrun(r);
rr.Run();
}