.REP 和/或 .WID 运行时引擎 - 业务对象?

发布于 2024-12-01 05:47:04 字数 157 浏览 2 评论 0原文

Business Objects .REP 和/或 .WID 文件是否有任何类型的运行时引擎?我一直在寻找,但我没有找到任何东西。

注意:我不是指 .RPT 和/或 Crystal Reports

例如,如果我想在 .Net 应用程序中打开 .REP 报告,该怎么做?

Is there any kind of runtime engine for Business Objects .REP and/or .WID files? I have been searching, but I have not found anything.

NOTE: I am not referring to .RPT and/or Crystal Reports

For example, if I wanted to open a .REP report within in a .Net application, how would this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清引 2024-12-08 05:47:04

WID 文件的处理将在服务器上进行,但有一个 ReportEngine 来处理它们。

我不熟悉 .NET,但 Java 代码是这样的:

// acquire your enterpriseSession via your preferred route.
IEnterpriseSession enterpriseSession;

// begin retrieval of ReportEngine
ReportEngines engines = (ReportEngines)enterpriseSession.getService("ReportEngines");
ReportEngine webiReportEngine = engines.getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE);

// Use the ReportEngine to open a document
DocumentInstance docInstance = webiReportEngine.openDocument(obj.getID());

希望这会有所帮助。

The processing will happen on the server for WID files, but there is a ReportEngine for processing them.

I am not familiar with .NET but the Java code is as such:

// acquire your enterpriseSession via your preferred route.
IEnterpriseSession enterpriseSession;

// begin retrieval of ReportEngine
ReportEngines engines = (ReportEngines)enterpriseSession.getService("ReportEngines");
ReportEngine webiReportEngine = engines.getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE);

// Use the ReportEngine to open a document
DocumentInstance docInstance = webiReportEngine.openDocument(obj.getID());

Hopefully this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文