Questions tagged [maximo]

IBM Maximo Asset Management software provides asset lifecycle and maintenance management for all asset types on a single, extensible platform. It is built on Java, makes heavy use of SQL where clauses, and supports "automation scripting" out of the box in Jython/Python and JavaScript in predefined contexts.

IBM Maximo Asset Management software is the foundation and framework of an Enterprise Asset Management (EAM), Change and Configuration Management Database (CCMDB), Service Management and IT Asset Management (ITAM) suite of applications that provides asset lifecycle and maintenance management for all asset types on a single platform. Businesses across all industries use Maximo to maximize the realized value of critical physical and IT assets, from purchase authorization to decommissioning, by augmenting business processes with automation and enforcement of best practices. Industry-tailored solutions are available for IT, utilities, nuclear power, transportation, government, telecommunications, life sciences, oil & gas, and more.

The current release, IBM Maximo Asset Management 7.6, is the latest release built upon a Java Enterprise Edition (JEE) Service Oriented Architecture (SOA). The Maximo framework is scalable, can be easily integrated into existing Enterprise Resource Planning (ERP) systems via REST, database tables, Remote Method Invocation (RMI) or a host of other options, can be extended with custom Java or via Automation Scripting (scripting in Jython/Python or JavaScript in predefined contexts), and can be configured with SQL where clauses in many of its internal configuration tools. It also sports tight integration with Actuate's Business Intelligence Reporting Tool (BIRT).

As Maximo is a Commercial Off The Shelf (COTS) product, related Java, Python, JavaScript, BIRT and SQL questions may have constraints not normally imposed on developers working with those languages/tools. For example, Automation Scripting contexts, for scripting in Python or JavaScript, are predefined but dynamic, so the scripter doesn't know at coding time what all the variable names will be. For another example, Maximo does select * from table where and appends your where clause, so the developer can't change the columns selected or the grouping.

Maximo Homepage

617 questions
0
votes
1 answer

Cannot access Websphere

I'm trying to deploy a Maximo server but cannot get in Websphere to do anything. The environment is Linux and I'm not very experienced with it, I have only worked on Windows so far. When I try to start up WebSphere by using this command:…
Leo
  • 2,173
  • 6
  • 28
  • 37
0
votes
1 answer

Real inventory vs Finance inventory

I'm pretty new to Maximo and I have a question about how things should be handled. We have a project of integrating our ERP with Maximo using MIF interfaces. I'd like to know how you performed this in your company as I'm sure we're not the only…
Martin
  • 27
  • 6
0
votes
2 answers

Maximo Web Service Data Filter

I've created an enterprise web service in maximo that uses extsys1. In extsys1 I've created a duplicate of MXPERSONInterface and managed to create a query from it (sync was default). Now when I finished my web service I can succesfully query maximo…
anteAdamovic
  • 1,462
  • 12
  • 23
0
votes
1 answer

Getting duplicate email on schedule report in maximo

Getting duplicate email on schedule report in maximo. Only couple of reports which is getting duplicate emails at the same time to inbox on schedule reports. Eclipse Version: 3.7.1 Build id: M20110909-1335 Maximo SmartCloud Control Desk 7.5.1.0. Any…
Roshan
  • 47
  • 2
  • 10
0
votes
1 answer

How to "getStackTrace()" in old version of Java 1.3.1 (MXExeption)

I'm developing using an older Java version which has no getStackTrace() method. There is a printStackTrace method but it's not printing where I want it. Is there a way to extract the full contents of Exception ex (ex in this case, and a…
Baked Inhalf
  • 3,375
  • 1
  • 31
  • 45
0
votes
1 answer

SQL Server 2014 JDBC Drivers needed for IBM Maximo 7.5 / Websphere Installation

Virgin post, please be gentle. :) First of all, I'm not even sure if this is the correct forum. TLDR: My mission is to set up Maximo 7.5 with IBM Websphere / Microsoft SQL Server 2014. And I need the SQL Server 2014 JDBC Drivers -- As above, during…
0
votes
1 answer

Maximo anywhere error when deploying adapter on worklight server

I need to use maximo anywhere so i have installed worklight server and worklight studio. from worklight studio when trying to deploy adapter on worklight i got this error in console : Adapter deployment failed Not Found; Error 404:…
0
votes
1 answer

BIRT.Question marks instead Cyrillic symbols in parameters in where clause

I'm using BIRT 3.7.1 and Maximo 7.5. I need to get report with data which was sorted in List tab in application (f.e. Assets). I do this using the chekbox "use Where clause" (in Maximo report properties). I get the string whith where clause using…
mike
  • 21
  • 4
0
votes
1 answer

Maximo workflow task node actions

I'm wanting to modify an existing workflow in workflow designer to give 3 routing options for a user instead of 2. It says that a task node can only have one positive and one negative line. What's the work-around for this? I don't think an action…
AuthenticReplica
  • 870
  • 15
  • 39
0
votes
2 answers

Maximo escalation schedule

I'm wanting to create an escalation to be scheduled every 12 hours at 10 AM. However, the form for selecting the schedule time is as follows: Every _ hour(s) on minute _ It doesn't specify what the starting hour is so how can I do that? Thanks
AuthenticReplica
  • 870
  • 15
  • 39
0
votes
1 answer

unable to open the downloaded excel birt report through maximo

Birt Report consist a simple created SQL query based report using date paramater which is having two section one is SR Details and second is section deals with Worklog. After running on to the production and downloaded in excel format, I am unable…
Roshan
  • 47
  • 2
  • 10
0
votes
1 answer

Conflicting class name in jars?

This might sound stupid but is it possible to access classes with same name in 2 jars based on some condition. My problem is i want to make a standalone java program where in i can connect to my old and new maximo systems through RMI i am able to…
checkgdata
  • 313
  • 5
  • 13
0
votes
2 answers

Multiple table querying from one where clause

I'm using a field class that will filter a lookup list of companies to only show those that provide a certain service. The 4 tables used are: PURCHVIEW,PCSRVCS,SRVCFETCH and COMPANIES and the method I'm using is: void …
AuthenticReplica
  • 870
  • 15
  • 39
0
votes
1 answer

Maximo setWhere() query to get distinct results?

I'm trying to do this SQL query: select distinct wonum from invreserve where location='01' order by wonum; How can this be converted to a setWhere() query? I've tried: invreserveSet.setWhere("(1 = 1) and wonum in (select distinct wonum from…
Baked Inhalf
  • 3,375
  • 1
  • 31
  • 45
0
votes
3 answers

SQL query get latest from multiple rows - too slow

I've written a query for a SRSS report that is supposed to retrieve a list of items from maximo. It includes how many items are in stock, if they have a received and/or issue date (and if so what is the latest date) and the unit cost at that time.…