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
vote
2 answers

How to make a hard-coded HTTP processing script dynamic?

I have a Jython 2.7 script that receives a URL and uses the parameters/values in the URL to create or update records. Example URL:…
User1974
  • 276
  • 1
  • 17
  • 63
1
vote
1 answer

Maximo dialog box : values won't reset on cancel / dialogcancel

i created a custom action in a Maximo app which opens a dialog box where the user can tick checkboxes to choose whether or not to display tabs in the app view. If a checkbox is selected in the dialog box, the attribute's value is set to 1 and the…
erabi
  • 31
  • 2
1
vote
1 answer

Maximo search completed order yesterday SQL where clause

I'm trying to create a "dynamic" query to run a scheduled report every morning. I have a client that wish to have a report sent every morning where he gets information about closed tickets yesterday. I have tried to search for yesterday with a…
1
vote
1 answer

How can we minify HTML in maximo longdescription ldtext field through python automation script?

my code snippet is below : import htmlmin descc=mbo.getString("DESCRIPCION_LONGDESCRIPTION") LONGDESCRIPTION=mbo.getMboSet("REP_LONGDESC") if LONGDESCRIPTION is not None: longMbot=LONGDESCRIPTION.getMbo(0) …
A.Bond
  • 43
  • 1
  • 6
1
vote
2 answers

Maximo automation yesno dialog fails in 7.6.1.1 but not in 7.6.0.9

I have some relatively simple code which displays a yes/no dialog in Maximo 7.6.0.9. Porting to Maximo 7.6.1.1 did not work at all despite using the compatibility option. No dialog is displayed and the debug is indicating it doesn't know what the…
kishjeff
  • 121
  • 13
1
vote
1 answer

Does MAXIMO support SAML authentication

We want to allow our users to authenticate on MAXIMO via our external F5 BIG-IP firewall. Is it possible to setup MAXIMO to integrate with this appliance and use authentication token issues by this firewall. BTW, we are deploying MAXIMO on AWS cloud…
1
vote
1 answer

WO: Make asset XY trump service address XY -- if asset's geometry type is point

Maximo 7.6.1.1: I have custom fields in ASSET: ASSET.GEOMETRYTYPE Values: POINT, LINE, POLYGON Source: JSON mapping ASSET.X and ASSET.Y The values are the centerpoints of GIS assets. Source: points = ST_X & ST_Y, line = ArcPy scheduled task,…
User1974
  • 276
  • 1
  • 17
  • 63
1
vote
1 answer

How to autoextend maximo contract at due date?

I'm trying to know whether there is a standard way to auto extend a Maximo contract at due date. In most Maximo contract application, there are fields to set up auto extend but there is not any cron task to handle such purpose. Do I really have to…
Bigmwaj
  • 361
  • 2
  • 7
1
vote
1 answer

Is it possible to link Maximo with Github

I'm pushing my code to github and I have some tickets opened in IBM Maximo, is it possible somehow to make Maximo aware of that I'm working on some code, maybe if I name a branch in git same as it's ticket's name in Maximo IBM? I've scoured the web…
Roxy'Pro
  • 4,216
  • 9
  • 40
  • 102
1
vote
1 answer

Maximo REST API : MXAPIMeter Create Meter Failed

I tried to create Meter using HTTP POST olscmeter and mxapimeter. My python code is postReq = mxURL + "/maximo/oslc/os/oslcmeter" headers = {'Content-type': 'application/json', 'maxauth' : maxAuth} body = {'METERNAME' : meterName, 'METERTYPE' :…
Tiong Ghee
  • 11
  • 2
1
vote
0 answers

New row not visible in Maximo

I have a requirement to add row on a tab which does not exist by OOB. Hence in order to achieve this I mapped psdi.webclient.system.beans.DataBean bean class to the table and then added new row button. Now on click of new row button the new row…
max092012
  • 365
  • 1
  • 5
  • 25
1
vote
2 answers

Make mass updates via Maximo list view?

Maximo 7.6.1.1: It would be great if there were a way to make mass updates to a field in a table from within Maximo applications. For example, in other software such as GIS software, it is possible to open the attribute table of a table, filter the…
User1974
  • 276
  • 1
  • 17
  • 63
1
vote
3 answers

how to write an oracle single query to get data from 2 tables

My system has two tables as below I need to write a single query in oracle that gives me below result i understand how to write them in a different query, but in a single query, I have no idea.. here the result is group by craft and…
Nisha Verma
  • 91
  • 2
  • 12
1
vote
1 answer

How do you create a custom function in IBM Maximo Asset Monitor using Python and is there an SDK?

I would like to create my own custom function and add it to the Maximo Asset Monitor Catalog. How do I do that?
Carlos Ferreira
  • 1,980
  • 2
  • 14
  • 18
1
vote
1 answer

Set Transaction Type to RETURN conditionally in maximo

In Work order tracking application in actuals tab materials section when user clicks on New row by default the transaction type = ISSUE . I would like to change this by default to RETURN and remove issue from the look up (I was able to remove ISSUE…
max092012
  • 365
  • 1
  • 5
  • 25