使用RAS的FieldObject复制不完整。 可能的API错误?

2020-09-23 07:29发布

点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)大家好, 我正在以编程方式复制...

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

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


大家好,

我正在以编程方式复制许多报告,因为我的公司遇到了一些较旧的问题。

如果我要复制公式字段,那么对于我的新报表,所有内容都将正确复制,除了文本解释条件公式。 所有其他报表对象均已完全复制! 为什么在Formulafield段落段中缺少条件公式? 但是所有其他条件公式或通用设置,边框或字体都可以正确复制。
我环顾四周,甚至可以设置文本解释属性,但不能设置文本解释条件公式。

手动设置此条件是不可选项,因为一个报告至少包含20到30个公式字段。

我在2010年发现了帖子,当时有人遇到类似问题。 但是之前有3个版本。 CR版本13现在有解决方案吗? 如果不是,为什么公式字段中的复制过程不完整?

我正在复制此处提到的过程:
https://answers.sap.com/questions/339342/where-can-i-set-the-textinterpretation-formula-of.html

我将不胜感激。

谢谢
杰西卡

使用中:
-用于Visual Studio 2017的SAP Crystal Reports
-Crystal Reports版本:13.0.21.2533
-我正在使用in proc RAS API

(10.0 kB)
5条回答
My梦
2020-09-23 07:55

嗨Jessica,

您可以发送报告吗? 您需要找到一个FTP服务器,我们没有一个。

看看这是否返回了他们?

{
btnReportObjects.Text ="";
flcnt = 0;
Errorcnt = 0;

foreach(rptClientDoc.ReportDefController.ReportObjectController中的CrystalDecisions.ReportAppServer.ReportDefModel.ReportObject reportObject .GetAllReportObjects())
{
var reportSection = rptClientDoc.ReportDefController.ReportDefinition.FindSectionByName(reportObject.SectionName);
for(int index = 0; index {
var公式= reportSection.Format.ConditionFormulas [(CrystalDecisions.ReportAppServer.ReportDefModel.CrSectionAreaFormatConditionFormulaTypeEnum)index];
var NewFormula = reportSection.Format.ConditionFormulas [(CrystalDecisionsFormat。 )index];

try
{
if(formula.Text!= null)
{
textBox1 ="条件公式:" + Formula.Text.ToString()+ " \ n";
textBox1 + ="部分" + reportSection.Name +" \ n";
btnReportObjects.Text + = textBox1; btnReportObjects.AppendText("'End'\ n \ n");
textBox1 ="";
++ flcnt;
btnCount.Text = flcnt.ToString();
} < br>}
catch(异常例外)
{
btnReportObjects.Text + =" \ nException:" + ex.ToString();
++ Errorcnt;
btnErrorCount.Text = Errorcnt .ToString();
}

Don

一周热门 更多>