Если у вас есть настройка отчета, источник данных и настройка шаблона, вот код персонала для этого:
/* get report definition object */
&oRptDefn = create PSXP_RPTDEFNMANAGER:ReportDefn (&yourRptDefn);
&oRptDefn.Get();
/* pass Rowset to the report definition */
&oRptDefn.SetRuntimeDataRowset(&yourRowset);
/*generate report*/
&oRptDefn.ProcessReport (&yourTmpltID, &yourLangCd, &yourAsOfDate, &yourOutFormat);
/*publish report */
&oRptDefn.PrintOutput(&yourDestinationPath);