Crystal Reports 13:如何导出到XLSX

2020-09-19 01:09发布

点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)您好,SAP-Crystal R...

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


您好,SAP-Crystal Reports支持团队,

我仍然尝试将数据导出为XLSX格式。 我的(C ++)程序作为服务运行,并且仅导出到磁盘文件(主要是PDF)。

我的安装如下:

操作系统:Windows 10 Pro
IDE:Microsoft Visual Studio 2010,版本10.0.40219.1 SP1Rel
Microsoft .NET Framework 4.7.02558 SP1Rel

SAP Crystal Reports,用于Microsoft Visual Studio的版本13.0.22.2668

我的代码段如下:

#using

#using
#using
#using
#using

使用命名空间CrystalDecisions :: Shared;
使用命名空间CrystalDecisions :: ReportSource;
使用命名空间CrystalDecisions :: CrystalReports:Engine;
使用命名空间CrystalDecisions :: ReportAppServer :: ReportDefModel;

...

布尔CVerarbCR :: ExportSrv(...)

{

...

CrystalDecisions :: ReportAppServer :: ReportDefModel :: ReportDocument ^ RASrptDoc = gcnew CrystalDecisions :: ReportAppServer :: ReportDefModel :: ReportDocument();
CrystalDecisions :: ReportAppServer :: ReportDefModel :: DataOnlyExcelExportFormatOptions ^ RASXLXSExportOpts =
CrystalDecisions :: ReportAppServer :: ReportDefModel :: DataOnlyExcelExportFormatOptions();
RASXLXSExportOpts =(DataOnlyExcelExportFormatOptions ^)RASrptDoc-> get_SavedExportOptions(CrystalDecisions :: ReportAppServer :: ReportDefModel :: CrReportExportFormatEnum:C> 36.6;
RASXLXSExportOpts-> ExportObjectFormatting = true;
RASXLXSExportOpts-> ExportImages = false;
RASXLXSExportOpts-> UseWorksheetFunctionsForSummaries = false;
RASXLXSExportOpts-> MaintainRelativeObjectPosition => true;
RASXLXSExportOpts-> ExportPageHeaderAndFooter = false;
RASXLXSExportOpts-> SimplifyPageHeaders = true; RASXLXSExportOpts-> ShowGroupOutlines = false;

CrystalDecisions :: ReportAppServer :: ReportDefModel :: ExportOptions ^ exportOpts1 = gcnew CrystalDecisions :: ReportAppServer :: ReportDefModel :: ExportOptions();
exportOpts1-> ExportFormatType = CrystalDecisions :: ReportAppServer :: ReportDefModel :: CrReportExportFormatEnum :: crReportExportFormatXLSX;
exportOpts1-> FormatOptions = RASXLXSExportOpts;

RASrptDoc-> PrintOutputController.ExportEx(exportOpts1).Save(strReportPathAndName,true);

...

我在这里遇到错误:

get_SavedExportOptions不是

的元素

CrystalDecisions :: ReportAppServer :: ReportDefModel :: ReportDocument

PrintOutputController不是

的元素

CrystalDecisions :: ReportAppServer :: ReportDefModel :: ReportDocument

在哪里可以找到ReportAppServer的API? 请注意,链接 help.sap.com/businessobject/ product_guides/sapCRVS2010/en/rasnet10_api_en.zip 不再有效!

预先感谢

Stefan Grasse(VAB GmbH)

4条回答
我是小鹏鹏啊
2020-09-19 01:19

非常感谢,唐,

您对我有很大帮助!

但是我必须扩展以下内容:

 #using 
 #using 
 ...
 使用命名空间CrystalDecisions :: ReportAppServer :: ClientDoc;
 使用命名空间CrystalDecisions :: ReportAppServer :: Controllers;
 ...
//您的代码如上所述!

然后我只遇到一个错误:

" 错误C2039:"保存"不是'CrystalDecision :: ReportAppServer :: CommonObjectModel :: ByteArray'的元素"

这是什么? 我是否需要"使用"更多的DLL?

在哪里可以找到名称空间ReportAppServer。*的API? (您页面上的链接

https://wiki.scn.sap.com/wiki/display/BOBJ/Crystal+Reports%2C+Developer+for+Visual+Studio+Downloads

《 Report Application Server .NET SDK API参考指南》 确实可以 不起作用:"抱歉,我们找不到您要查找的页面"

预先感谢您的帮助!

致谢

Stefan Grasse(VAB GmbH)

一周热门 更多>