如何在Acumatica报告标题中显示属性值?

时间:2014-08-19 06:24:54

标签: attributes report erp acumatica

如何在Acumatica报告标题中显示属性值? 要求是在报表的标题信息中显示Acumatica业务帐户信息属性。例如,有一个属性说“特殊成员”,它保持值“是”。此信息应与其他BAccount表字段一起显示在报告标题中。

Format:
Report Header
----------------------
BAccount Name: XYZ Company
Special Member: Yes
----------------------
Report Detail:
-----------------------
Activities List...

任何人都可以指出我们需要使用什么加入来实现这一目标?在Acumatica报告设计师中,我们只有一个地方可以定义关系。如何将这些信息与报告标题中的信息联系起来?

1 个答案:

答案 0 :(得分:1)

这四个DAC处理属性,即

CSAnswers CSAttribute CSAttributeDetail CSAttributeGroup

链接回特定实体(在您的情况下为BAccount)基于CSAttributeGroup.Type和CSAttributeGroup.AttributeID连接到CSAnswers.EntityType和CSAnswers.AttributeID,其中CSAnswers.EntityID = BAccountID

希望这会有所帮助!

日Thnx