I'd Like to update the 'read' field in m
I'd Like to update the 'read' field in my Olap cube to allowed. I have the following snippet but not sure how to perform the update.
for Each oCP in oCube.CubePermissions
WScript.Echo " CP: " & oCP.Role.Name
If oCP.Role.Name = "Read Role" Then
Set oCP.Read = 1 ' This is the line that does not work
end if
next
Cheers.