本文介绍了MDX允许成员仅在角色维度数据中设置同级的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有可能通过允许他仅在父子层次结构中看到同级来限制维度数据中的角色?示例层次结构:

Is it possbile to restrict a Role in Dimension Data by allowing him to see only siblings in the parent-child Hierarchy?Example Hierarchy:

EMEA              100

  UK               50
     London        30
     Southampton   20

  France           50
      Paris        10
      Lyon         40

只看:

  EMEA             100
     UK             50
     France         50

推荐答案

我通过以下MDX语句收到了预期的结果

I've received the expected result with the following MDX statement

 NONEMPTY(
    descendants(
       [Dim Branch Hierarchies].[Branch Hierarchy]
       ,,leaves
    )
  , (
     [Measures].[GrantedHi]
    ,StrtoMember( 
        "([Dim Users].[Account Name].[Account Name].["+ Username()+ "])" 
     )
    ) 
)

这篇关于MDX允许成员仅在角色维度数据中设置同级的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 00:15