Report.pack Method [AX 2012]
Serializes the current instance of the Report class.
The following example stores a report named "cust" in a container and runs the report in the container (not the container in the AOT).
static void testReportPack(args a)
{
report r1;
report r2;
reportRun rr;
container c;
r1 = new report("cust");
c = r1.Pack();
r2 = new report(c);
rr = new reportrun(r2);
rr.Run();
}
Community Additions
ADD
Show: