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
-1
votes
1 answer

My None check is not working keep getting "NoneType object has no attribute XXX"

I have encountered this error before. It usually means that I am trying to use and method with an empty object. So I put in checks but the checks do not seem to be working. Here is my code: possiblechildSet=…
mri3
  • 256
  • 3
  • 18
-1
votes
2 answers

UnsupportedOperationException: SRVE8020E: Servlet does not accept multipart requests

I am using Maximo Anywhere 7.5 on Websphere 8.5. When i am trying to upload image i got this error: servlet E com.ibm.ws.webcontainer.servlet.ServletWrapper service SRVE0068E: An exception was thrown by one of the service methods of the…
Mohammed Alrifai
  • 131
  • 1
  • 3
  • 13
-1
votes
1 answer

Not able to login Maximo Anywhere Work Approval apps

I installed Maximo Anywhere 7.5.1.2. We have Worklight 6.1.0.2. I got following error on Worklight console. I have updated Maximo OSLC web resource in web.xml as per mentioned on IBM knowledge center. I appreciate any help [2/22/15 20:09:40:922…
ken
  • 1
  • 2
-1
votes
1 answer

How to deploy Maximo Anywhere app as a new app version?

I'm following IBM documentation in order to add barcode enabled in WorkExecution. After changing the property barcode.enabled to true and build/deploy app it works fine. My question is : it's written "When you activate bar code scans, the updated…
Atharaxie
  • 3
  • 4
-1
votes
1 answer

IBM Worklight 5.0.6 - FWLSE0099E: An error occurred while invoking procedure OSLCGenericAdapter/getUserAccessDataFWLSE0100E

I am using IBM Worklight 5.0.6 with IBM Maximo Anywhere 7.5.0, with pre-installed Android applications "Work order approval" and "Work order Execution". When opening one of the apps and providing the username and password, I receive the following…
-1
votes
1 answer

How can I replacing empty ldtext column from longdescription table in maximo using sql

Symptom,Cause,Resolution are not filled up, so it empty, I want to replace the fetched ldtext columns from long description table with some text. I want show null columns with some text in a report. Thank you To replace null values in column use…
-1
votes
2 answers

IBM SmartCloud Control Desk REST API

I'm trying to write a program to access the SCCD REST API, but can't find any documentation online. I'd like to know the URLs I have to call. So for example to access a persons details I call : /maxrest/rest/os/person But I can't find any other…
cete3
  • 647
  • 6
  • 19
-2
votes
1 answer

Jython: cannot import name String [from java.util]

I'm trying to use a Jython automation script in Maximo 7.6.1.1: from psdi.iface.router import HTTPHandler from java.util import HashMap from java.util import String handler = HTTPHandler() map =…
User1974
  • 276
  • 1
  • 17
  • 63
-2
votes
1 answer

What programming language is this Maximo automation script written in?

I'm trying to teach myself Maximo automation scripting. I've come across a script in the Maximo help. I want to try to understand how it works. But first, what programming language is it written in? service.log("I want to multiply 2 numbers and log…
User1974
  • 276
  • 1
  • 17
  • 63
-2
votes
1 answer

How to override Maximo server time with local browser time

Our Maximo server is in Huston and we have users working from India. In the Maximo UI one of fields should auto populate with the current system date and time (i.e Browser date in IST) instead of server time. EX: When click on change status the…
Shreyuth
  • 116
  • 3
  • 13
-2
votes
1 answer

How to use SQL Conditional statements in SQL

I'm working on a BIRT Reporting. What I need to do is, If the Column1 value is Approved, Copy Column 2 value to Column 3 else null SELECT pr.prnum,prline.prlinenum,prline.itemnum,prline.description,prline.orderqty,prline.ponum,pr.status as…
James
  • 55
  • 1
  • 9
-2
votes
1 answer

Maximo special Query for PMs without asset

I need a query for Maximo to select PMs without asset including PMs that have route and route has no asset.
Abe
  • 1
-3
votes
1 answer

Maximo Anywhere 7.5.1 iOS Apps from windows server

I installed maximo anywhere 7.5.1 on windows 2008 server. We have Worklight 6.1 and web sphere 7. I ran build all command but it didn't create iOS app because of windows server. I can see andorid apps deployed on the appcenter. Please let me know if…
ken
  • 1
  • 2
-4
votes
2 answers

Combo box control in application designer for maximo 7.6?

My client's requirement is to have a combo box on one of my custom application in maximo 76. How do I bind a Combo Box in Maximo Application Designer?
-4
votes
1 answer

SQL - Multiplying columns

I cannot get this to work SELECT PM.PMNUM, (COUNT(ROUTE_STOP.LOCATION) * JOBPLAN.JPDURATION) FROM PM LEFT OUTER JOIN ROUTE_STOP ON ROUTE_STOP.ROUTE = PM.ROUTE LEFT OUTER JOIN JOBPLAN ON JOBPLAN.JPNUM = PM.JPNUM GROUP BY PM.PMNUM
1 2 3
41
42