点击此处---> 群内免费提供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)
史蒂芬,你好
尝试获取获取的已保存选项,只有在将它们保存在CR Designer中后,它们才会存在,因此如果它们不存在,则可以忽略它们。
这有效:
唐
对不起,
我的错:我不得不"使用"您所有的用语。
一切都很好,最后我得到了所需的XLSX文档!
从我的角度来看,唯一的开放点是缺少API。
非常感谢您的帮助
最好的问候
Stefan
非常感谢,唐,
您对我有很大帮助!
但是我必须扩展以下内容:
然后我只遇到一个错误:
" 错误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)
在您的项目中,将它们添加到"引用"列表中,它们随CR for VS .exe一起安装
唐
一周热门 更多>