1

有谁知道一个应用引擎程序创建行集然后调用 XML Publisher 来创建报告的好例子吗?

人物工具 8.49

提前致谢。

4

1 回答 1

1

如果你有你的报告定义、数据源和模板设置,这里是人员代码:

/* 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);
于 2011-05-27T07:27:34.337 回答