Friday 10 January 2014

Based on the current record run the report in ax 2009

void clicked()
{
    Args     args;
    ReportRun          reportRun;

    ;
    super();
    args = new Args();
    args.name(Reportstr(ComparisionReport));
    args.parm(PurchRFQTable.RFQCaseID);
    args.record(PurchRFQTable);
    reportRun = classfactory.reportRunClass(args);
    reportRun.init();
    reportRun.run();
    args.parmObject( args );

}

No comments:

Post a Comment