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

Closing a PR in IBM Maximo 5.2

There are some PR (purchase requestion's) that are showing hisoryflag='N' While I'm executing select * from PR where historyflag='N',but I need to change it to 'Y' by force to close all related records to those PR's Please tell how to force close…
user2631600
  • 759
  • 1
  • 11
  • 18
0
votes
1 answer

OnClick on ticketid need to open a details of ticket using birt report

I had a requirement to create a report based on individual user whom having SR waiting for approval, On click on Ticket id the URL's should redirect to SR detailed page where he can check request approve or disapprove. using hyper link in birt…
Roshan
  • 47
  • 2
  • 10
0
votes
2 answers

How to watch any events occurred in SQL Server and integrate it with Maximo

I have a request to integrate Maximo with another system which use SQL Server DB, let's call it System 1 System 1, add or update person in database, i want to watch this change and create or update person record in Maximo accordingly, Any…
Kareem Amin
  • 43
  • 1
  • 7
0
votes
2 answers

Maximo - webapp cannot be launched from browser again if not signed out properly, must close browser and restart?

All users are experiencing a weird behavior: after logging in, if they close the tab of Maximo webapp without actually SIGNING OUT, and if they input the login page address into the address bar again, the browser only will give a white screen -- the…
Rexroth
  • 109
  • 1
  • 12
0
votes
1 answer

I need to create a DB2 query to pull ticket report from maximo for reopened tickets

I need to find out the total tickets reopened in a month. I tried one query but it gives results only for the tickets that are presently open i.e. (actualfinish is not null) and (status not in('RESOLVED','CLOSED)) The other search criteria can be…
0
votes
1 answer

Concurrent User Report

I have a table in Oracle that tracks user login and logout/timeout. I am making a select query to show me the concurrent users by hour for the past 7 days. I have a base query, but it does not properly count users who's session crosses midnight. Bit…
Peter
  • 9,643
  • 6
  • 61
  • 108
0
votes
2 answers

maximo - Enable/Disable section for security group

I'm using Maximo 7.5 I try to enable/disable section for specific security group. So i created this expression : 1 = (select 1 from GROUPUSER where USERID = :&PERSONID& and groupname in ( 'GR_1', 'GR_2')) My expression is associated with a…
Michaël
  • 13
  • 1
  • 4
0
votes
1 answer

Can Websphere automatically remove temporary files?

I am currently using Websphere to host IBM Maximo, when a BIRT report is created and emailed, Websphere stores this in its temporary files. These files are often very large and are taking up a lot of disk space. Does anyone know of a setting in…
user816526
  • 25
  • 4
0
votes
1 answer

Maximo Outbound interface using webservice to Biztalk/SAP

We are trying to create an Outbound Interface between Maximo 7.5 with BizTalk. We have followed all the steps of Creating an Object structure, Endpoint,And Publish Channel.Then associating Publish channel with an external system. We created a web…
user1391996
  • 21
  • 1
  • 3
-1
votes
1 answer

Maximo work order query looking for pm's with extdate populated

I am trying to run a query in Maximo work order tracking to find PM work orders that are not COMP, CLOSE, COMPFLD, or CAN where the PM.EXTDATE is not NULL. Here is what I have but it does not work. ((wosequence is null and status not in ('COMP',…
-1
votes
1 answer

How with Maximo Java customization to make an attribute required?

I have tried the following code and it doesn't seem to work: this.setFieldFlag("VIEW.LOC". MboConstants.REQUIRED, True)
Nenna Anya
  • 67
  • 7
-1
votes
1 answer

How to add skip rule in Publish Channels in Maximo

I have to add skip rule in publish channels like if route is not null then I have to send Task Work Orders and if job plan alone there then we need to send only parent workorder. How can I add skip rule for above condition?
-1
votes
1 answer

Calculate sum of linecost in POLINE with automation script in IBM Maximo

I'm new in scriptin and just start to learn that. I need a script that will do next: Script must enter sum value in my new field in POLINE. I have sql code for what I want: select sum(linecost) from poline group by itemnum. So every time when I…
-1
votes
1 answer

Maximo web service Sync Response: what is the purpose of messageid?

Maximo supports integration via web services. When I hit one of my Maximo web services with soapUI, it comes back with a messageID attribute in the tag, as shown in this image: What is the purpose of this messageID?
James
  • 55
  • 1
  • 9
-1
votes
2 answers

Maximo: Mimic Workflow assignments with an SQL query

I want to write an SQL query that mimics the results in the Maximo Start Center assignments section. The assignments are workflow assignments. I tried querying the workorder table and specifying the assignedownergroup that the user is in: select …
User1974
  • 276
  • 1
  • 17
  • 63