Maximo is an IBM tool. You use the maximo Migration Manager set of applications to promote product configuration content from one product environment to another, such as from development to test, and to production.Can creating packages in the migration manager and promoting them from one environment to another be automated somehow outside of the tool, so say something like a script that can allow to login to the maximo migration manager and then allow to perform the manual steps.
Asked
Active
Viewed 1,078 times
1 Answers
1
One option would be to write an automation script to create the migration manager packages and deploy them to the other environments using the psdi.dm Java package:
You could then potentially trigger execution of the automation script from outside of the system with an HTTP request:
Run an automation script via a URL
Alternatively (and separate to Migration Manager) you could automate generation of dbc scripts for product config. changes:
https://developer.ibm.com/static/site-id/155/maximodev/dbcguide/
https://github.com/ibm-maximo-dev/maximo-scripting/blob/master/samples/AS11_importExportScripts.md

Maximo.Wiki
- 631
- 5
- 17
-
Thanks a lot! I think this solution would work. But i am fairly new to Maximo and not much familiar with its core. Is there a way to auto generate a script to create a package and move from an environment to another in maximo migration manager, or do you have a sample script that can do that. I can try to invoke that using the method you suggested using HTTP request. – Ashley Jun 24 '20 at 14:12