Pages

Tuesday, November 17, 2015

Change the login messages for Development, Staging and Production environments in Maximo

Some times it is necessary to differentiate between Maximo Development, Staging and Production environments.

One of the way to differentiate is to customize the login header messages. You can do it through database configuration application.



  1. Go To > System Configuration > Platform Configuration > Database Configuration. 
  2. From the select action click on Messages. 
  3. Search for 'login' in the Message Group and 'welcome' in the Message Key.
  4. Change the values in the message keys: welcome, welcomemaximomessage and welcomeusername.

You can also do it through following update queries.


  • update MAXMESSAGES set VALUE='Welcome' where MSGKEY='welcome';
  • update MAXMESSAGES set VALUE='Welcome to Maximo (Dev), {0}' where MSGKEY='welcomeusername';
  • update MAXMESSAGES set VALUE='Welcome to Maximo (Dev)' where MSGKEY='welcomemaximomessage';
  • update L_MAXMESSAGES set VALUE='Welcome' where ownerid=(select maxmessagesid from MAXMESSAGES where MSGKEY='welcome');
  • update L_MAXMESSAGES set VALUE='Welcome to Maximo (Dev), {0}' where ownerid=(select maxmessagesid from MAXMESSAGES where MSGKEY='welcomeusername');
  • update L_MAXMESSAGES set VALUE='Welcome to Maximo (Dev)' where ownerid=(select maxmessagesid from MAXMESSAGES where MSGKEY='welcomemaximomessage');

No comments:

Post a Comment