Hyperion shared services is not working properly so how can I create and assign an LDAP user access to cubes?
Asked
Active
Viewed 1,269 times
1 Answers
1
- Check if the user exists in shared services by running below Maxl command in EAS console.
display user "z107818@SameTimeLdap";
if user doesn't exist, it will throw a warning, as shown in the picture
- Now create a user in shared services using the below command.
create user "z107818@SameTimeLdap" type external;
Its cause the user exists in LDAP, that's why type is external
- Now grant access to essbase cubes via below command
grant read on database LncSum.LncSum to "z107818";
For more info on this read below Oracle article. https://docs.oracle.com/cd/E57185_01/ESBTR/maxl_creusr.html

user2373210
- 461
- 2
- 5
- 16