使用Crystal运行时间13.0.20的记录选择公式的问题

2020-09-24 12:30发布

点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)嗨, 我正在尝试使用.net ...

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

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


嗨,

我正在尝试使用.net Framework 4.6.2上的Crystal运行时版本13.0.20从打印预览选项访问报告,但它给我以下错误:

{" The缺少的。 FM_Kind} = 1 \ r'\ n缺少)。\ n详细信息:errorKind"}

当我从记录选择公式中删除注释行时,它的运行正常:


({Form.FM_Kind} = 1

//和{Form.FM_ID} = 21436

//

类代码:

//加载报告mainreportdoc = new ReportDocument(); mainreportdoc.Load(reportobject.ReportPath); //设置主选择公式reportobject.Finalize_MainSelectionFormula(); 如果(mainreportdoc.RecordSelectionFormula.Length> 0){mainreportdoc.RecordSelectionFormula ="(" + mainreportdoc.DataDefinition.RecordSelectionFormulaRaw +")"; 如果(reportobject.MainSelectionFormula!= null && reportobject.MainSelectionFormula!="")mainreportdoc.RecordSelectionFormula = mainreportdoc.DataDefinition.RecordSelectionFormulaRaw +"和" + reportobject.MainSelectionFormula; }

对此有什么建议吗?