Wednesday, January 22, 2014

Maximo 7.x Report List, description and demo outputs

We may need to refer out of the box reports to develop the custom reports with features, such as Bar Graphs, Charts, Hyperlink, localization etc.
In some situations, we were asked by the Customers on the capability and limitation of Maximo reports.

This below link lists the V75 Delivered Reports, along with their descriptions, file names, and references to other information including parameters, templates, grouping, sorting and unique reporting functionality.

It has the PDF version of demo outputs of reports as well.

https://www-304.ibm.com/support/docview.wss?uid=swg21497942

Maximo 7.1
http://www-304.ibm.com/support/docview.wss?uid=swg21305005

Thursday, January 2, 2014

Sort Inbox Assignments by Start Date in Maximo 7.x

We need to override the getInboxAssignments() method by extending the  out of box class psdi.workflow.WFAssignmentSet to sort the records in descending order by start date.

The new Custom Mbo Set needs to be configured in the Database configuration of WFASSIGNMENT object. 

public class CustomWFAssignments extends WFAssignmentSet implements WFAssignmentSetRemote
{
     public void getInboxAssignments() throws RemoteException, MXException
         {
            super.getInboxAssignments();
            setOrderBy(" STARTDATE desc");
            reset();
         }
}