intermediate

MBOs attribute current, previous, initial values

When implementing business logic in Java code it may be useful to compare the value of an attribute to it’s previous or initial value.This is particularly useful when overriding MboValueAdapter.action() method to validate the new value of an attribute as soon as it changes. Look at how the three values are retrieved in the following […]

How to make record readonly based on an attribute’s value

This entry is part of the Conditional Expressions HowTo. A very typical customization task is to make readonly some records of a specific table based on the value of an attribute.For example you may wish prevent the editing of purchase orders that have a total costs higher than 1000$ for a specific group. Here is […]

Best practices for Maximo projects

Today I have received the following questions from one of our customers. Are there any best practices or recommendations on how to develop and maintain different versions of a Maximo based solution? How can we do source control? Are there any compare tool/utility to find differences in various version of application (available in different environments)? […]

Syncing data with an external system using a Publish Channel

This entry is part of the Maximo Integration Framework series. Publish Channels in MIF allows to send daya to external systems using a variety of protocols. In this article I will demonstrate how to automatically export new or updated assets into CSV/XML files. Those files can then be processed by an external application to perform […]

Find Roles with assignments in a Workflow

Roles in Maximo are used to represent a specific person or a group of people that can be used in workflows, communication templates and escalations. If you need to find which roles are used in a specific workflow you can use an SQL query like this. SELECT wfnode.title, wfnode.description, wfa.roleid, r.descriptionFROM wfnodeJOIN wfassignment wfa ON […]

Scroll to top