Thanks for the detailed reply.
I have questions about step 7.
In my case, Maximo will be calling a REST API of another app to fetch data in bulk.
Original Message:
Sent: 09-06-2024 17:03
From: Alex Walter
Subject: Integration best practice to get data from an external API in to maximo
There is a non-persistent object in Maximo called METERDATA that you can use to process inbound meter readings against assets.
For the integration tables approach, which offers asynchronous processing, the steps would be something like:
- Create an Object Structure similar to the MXMETERDATA Object Structure in Maximo
- Create an Enterprise Service against that Object Structure
- This is where you would enable Message Tracking
- Create an External System against that Enterprise Service / Object Structure with an MXIFACETABLE End Point
- Create the IFACE table(s) through the External Systems application
- Turn on the IFACETABLECONSUMER Cron Task
- Turn on the JMSQSEQCONSUMER Cron Task (if the External System is configured for sequential processing - not needed if configured for continuous processing)
- Write a program to call the API and write corresponding records to the mxin_inter_trans table and the related IFACE table.
For synchronous processing, you can use the Maximo REST API. I understand it may not fit your use case, but has less moving parts:
POST https://[hostname]/maximo/api/os/mxapimeterdata?lean=1apikey: [your API Key]Content-Type: application/jsonx-method-override: SYNC{ "assetnum": "11430", "siteid": "BEDFORD", "metername": "O-PRESSUR", "newreading": 4500}
Hope this helps,
------------------------------
Alex Walter
A3J Group LLC
Original Message:
Sent: 09-05-2024 13:13
From: Rana Ahmed
Subject: Integration best practice to get data from an external API in to maximo
Hi,
I have a requirement to get data from an external API into maximo. These can be thousands of rows.
e.g. we will be bringing in data related to reading of asset meters and will be updating the existing meters in Maximo.
I want to use Interface tables. So we do have a track of incoming data.
I would also like to use message tracking to bring that data in.
What would be the best approach to fetch such data from that API in to maximo using as much as possible the built in applications. (e.g. Object structures, external systems etc)
#Integrations
#MaximoApplicationSuite
------------------------------
Rana Ahmed
Maximomize
------------------------------