Display in a Dashboard where a Member Name is used in the application (in which Cube Views...)

Harry
New Contributor II

Hi,

Do you know if there is a way to display in a Dashboard where a Member name is used in the application (in which Cube Views...) ?

Thanks,

Regards,

Harry 

1 ACCEPTED SOLUTION

EricOsmanski
Valued Contributor

Harry - you can put this query into a Data Adapter and then into a Dashboard. You can also make a parameter which will pop up and require an entry or allow the user to select the member.

SELECT Name
FROM CubeViewItem
Where XmlData LIKE '%YOURMEMBERNAME%'

View solution in original post

4 REPLIES 4

EricOsmanski
Valued Contributor

Harry - you can put this query into a Data Adapter and then into a Dashboard. You can also make a parameter which will pop up and require an entry or allow the user to select the member.

SELECT Name
FROM CubeViewItem
Where XmlData LIKE '%YOURMEMBERNAME%'

Harry
New Contributor II

Thank you very much Eric, 

Do you know how to dipslay the cube views that contain a member even if the member is not memtioned explicitly, but through a business rule or an aggregate in the field "member filter" ?

Thanks,

Harry

EricOsmanski
Valued Contributor

You could search the BR's for the member name, but to see if it exists within a member filter would be something that needs to be built. I can imagine it being quite expensive because of all the checks that would need to be done, but it likely is possible. I don't have anything on this, though.

Harry
New Contributor II

Thanks Eric 

Harry