Business Requirement : We wanted to create a landing page for the Dashboard and based on the user it should change.
Lets consider We have two user groups eg: group A & Group B.Whenever any user from group A login into web then , He/she has to see a one landing page and for other user from the second user group B should see a different landing page.
Solutions/Approaches :
We can achieve this by changing the default landing page of your users in user preferences.
It cannot be done at group level with current version, May be MicroStrategy add this in new version but you can automate it with command manager.
Sample script :
User : John
Doc_ID=A936FD52430F0C1855AFE8AFC3397898
Project name :POC
APPLY WEBPREFERENCES NAME "Default start page:" VALUE "evt=2048001&documentID=A936FD52430F0C1855AFE8AFC3397898" FOR USER "john" TO PROJECT "POC" ;
In case you wanted to revoke this at any point of time then use below script or change the user preference to default .
To revoke the default page back to normal with below command .
APPLY WEBPREFERENCES NAME "Default start page:" DEFAULTVALUE FOR USER "<your user>" TO PROJECT "<your project>"
Lets consider We have two user groups eg: group A & Group B.Whenever any user from group A login into web then , He/she has to see a one landing page and for other user from the second user group B should see a different landing page.
Solutions/Approaches :
We can achieve this by changing the default landing page of your users in user preferences.
It cannot be done at group level with current version, May be MicroStrategy add this in new version but you can automate it with command manager.
Sample script :
User : John
Doc_ID=A936FD52430F0C1855AFE8AFC3397898
Project name :POC
APPLY WEBPREFERENCES NAME "Default start page:" VALUE "evt=2048001&documentID=A936FD52430F0C1855AFE8AFC3397898" FOR USER "john" TO PROJECT "POC" ;
In case you wanted to revoke this at any point of time then use below script or change the user preference to default .
To revoke the default page back to normal with below command .
APPLY WEBPREFERENCES NAME "Default start page:" DEFAULTVALUE FOR USER "<your user>" TO PROJECT "<your project>"
Comments