Maximo

Maximo 7.5 education sessions

During the second half of 2012 IBM held some great education sessions to assist customers in planning their upgrade to Maximo Asset Management 7.5 and SmartCloud Control Desk 7.5. This series was devoted to the Maximo product suite, add-on’s and industry solutions. In each session, a member of the business architecture team delivers a presentation chronicling […]

Introduction to Maximo Integration Framework (MIF)

This entry is part of the Maximo Integration Framework series. What is Maximo Integration Framework? The Maximo Integration Framework (MIF) is an integral part of the Tivoli Process Automation Engine (TPAE) that allows the synchronization and integration of data and of applications between TPAE and external systems in real time or batch mode by using a […]

Reset the value of a field when another field is modified

This entry is part of the Maximo Java Development series. Today I want to share with you some Java sample code to reset the value of a field when another field is modified.In the example below I have implemented a little piece of logic to reset the WORKORDER.SUPEVISOR field when the WORKORDER.OWNERGROUP is modified. Here […]

IBM’s mobile solutions for Maximo

This article is outdated!IBM Anywhere is now available. In several forums and groups I have recently seen, there is some confusion around the current IBM’s mobile solutions for Maximo so I will try to give my personal view on this hot topic.Before going on keep in mind that this analysis is updated to the current situation as […]

How to create Maximo demo database (MAXDEMO)

The Maximo contains an extremely useful command to create a demo database filled with a sample data. This can be really helpful when learning haw Maximo works. Tho create the demo database perform these steps. Stop the application server (MXServer) Open a command prompt Move to:[SMP_DIR]\maximo\tools\maximo Issue the following command:maxinst -s[INDEXTABLESPACE] -t[DATATABLESPACE] By default both […]

Custom condition Java class

Sometimes standard Conditional Expressions are not enough. Sometimes the logic to implement is too complex to be implemented using an SQL expression. In such cases Maximo allows to implement the condition logic in a custom condition class using Java. To implement a condition class you must extend psdi.common.condition.CustomCondition and override evaluateCondition and toWhereClause methods. Here is a […]

Find large Maximo tables on DB2

I this article I have explained how to list the larger database tables and indexes on Oracle.On DB2 you can use the following one. SELECT name, card, npages, fpages, stats_timeFROM sysibm.systablesWHERE creator = ‘MAXIMO’ AND type=’T’ORDER BY card DESC; The returned columns are: NAME: Name of the table CARD: Number of rows NPAGES: Total number of pages […]

Scroll to top