We got a reruirement today from client is it possible to change or update Oracle Hyperion Workspace or Title bar or both with client name or by environment. Yes it is possible. As we have many blogs on the same and also articles in Oracle MySupport.
So, here are the steps to update the same.
First of all, Thanks to Kamalanathan Prabhakaran for giving this idea to post and for helping in this activity.
Steps for change Title in Title Bar.
1.Navigate to below folder
D:/oracle/Middleware/EPMSystem11R1/products/Foundation/workspace/InstallableApps/
2.Take backup of workspace.ear as workspace.ear_ORIG
3.Copy the workspace.ear to local machine
4.Open workspace.earand then workspace.war using 7zip
5.Edit index.jsp and change the below entries
from
// Get the config options
IConfig rConfig = ConfigFactory.getConfig(application);
String rstTitle = ConfigHelper.getApplicationName(application);
to
// Get the config options
IConfig rConfig = ConfigFactory.getConfig(application);
String rstTitle1 = ConfigHelper.getApplicationName(application);
String rstTitle2 = " PROD "; String rstTitle = rstTitle1 + rstTitle2;
6.save it and upload and replace the existing workspace.ear
7.Move or delete tmp and cache of foundation Managed server
8.Restart the Hyperion services
Thanks,
Mady
So, here are the steps to update the same.
First of all, Thanks to Kamalanathan Prabhakaran for giving this idea to post and for helping in this activity.
Steps for change Title in Title Bar.
1.Navigate to below folder
D:/oracle/Middleware/EPMSystem11R1/products/Foundation/workspace/InstallableApps/
2.Take backup of workspace.ear as workspace.ear_ORIG
3.Copy the workspace.ear to local machine
4.Open workspace.earand then workspace.war using 7zip
5.Edit index.jsp and change the below entries
from
// Get the config options
IConfig rConfig = ConfigFactory.getConfig(application);
String rstTitle = ConfigHelper.getApplicationName(application);
to
// Get the config options
IConfig rConfig = ConfigFactory.getConfig(application);
String rstTitle1 = ConfigHelper.getApplicationName(application);
String rstTitle2 = " PROD "; String rstTitle = rstTitle1 + rstTitle2;
6.save it and upload and replace the existing workspace.ear
7.Move or delete tmp and cache of foundation Managed server
8.Restart the Hyperion services
Thanks,
Mady