带有成本携带报告的损益:偏爱 /不显示符号级别信息

发布于 2025-02-05 19:23:49 字数 299 浏览 4 评论 0原文

需要以下“携带损益成本”报告

  • 当我们通过选择任何参数SAVE帐户,资产,自定义UDA 1等进行分组时,我们现在

    ,然后自动符号级别信息。

  • ,但是在这里我们需要给予偏好。这将在前端。

偏好名称:“在分组中显示符号信息”:带2个选项是True和False。

如果为true(默认值):报告将以现有方式工作。意味着,如果我们选择任何分组,则会自动符号级别信息。

如果false:在这种情况下,只有摘要行将到来(没有任何符号级别信息)

We need the below enhancement in the "Profit and Loss Cost to Carry" Report

  • Right now when we group this report by selecting any parameter say Account, Asset, Custom UDA 1, etc then automatically Symbol level information also comes.

  • But here we need to give the preference. This will be on the front end.

Preference Name: "Show Symbol Info in Grouping": with 2 options True and False.

If True (Default Value): Report will work in the existing way. Means if we select any grouping then automatically Symbol Level information will also come.

If False: In this case just the Summary row will come (not any Symbol Level information)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云胡 2025-02-12 19:23:49

尽管这不是解决此问题的最有效方法。您只需添加一个报告参数,并设置显示符号级别数据的RowGroup的隐藏属性。

因此,添加一个称为SAIS pshowsymbols的新参数,其中两个选项,例如

Value Label
0     Show Symbols
1     Hide Symbols

将默认值设置为0

,然后设置RowGroup的隐藏属性,该属性将符号级别数据显示为类似的内容

=Parameters!pShowSymbols.Value = 1

,将返回true true < /code>当用户选择“隐藏符号”时,将不会显示RowGroup。

Although it's not the most efficient way to solve this. You could just add a report parameter and set the hidden property of the rowgroup that show the Symbol level data.

So add a new parameter called say pShowSymbols with two options e.g.

Value Label
0     Show Symbols
1     Hide Symbols

Set the default value to 0

Then set the hidden property of the rowgroup that show the Symbol level data to something like

=Parameters!pShowSymbols.Value = 1

This will return true when "Hide Symbols" is selected by the user and the rowgroup will not be shown.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文