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条回答
Bunny_CDM
2020-09-19 01:33

对不起,

我的错:我不得不"使用"您所有的用语。

一切都很好,最后我得到了所需的XLSX文档!

从我的角度来看,唯一的开放点是缺少API。

非常感谢您的帮助

最好的问候

Stefan

一周热门 更多>