Hi,
our customer has a dimension table with a parent-child architecture he wants to use for RLS. The table looks something like this:
cost_center, name, parent_cost_center
1, management, NULL
2, teamlead_1, 1
3, teamlead_2, 1
4, worker_1, 2
In Power BI I would use the PATH() function to create the hierarchy as an additional column for every row (e.g. “1 | 2” for teamlead_1) and then use the PATHCONTAINS() function in the RLS settings to check, if the current user’s cost_center number is in the hierarchy column.
I have not figured out how to implement this is TimeXtender. Does anybody have some experience on this topic?