Reputation: 1464
I created rules in Foundation -> Insights -> Analytics -> a rule, and in that rule, I set the action to send off an email when the condition was met.
What I really want to do is kick off a REST call to my Maximo server to generate a service request order. I can do that by hand, but I can't do that through a rule.
In the documentation for Insights (http://www.ng.bluemix.net/docs/services/iotrtinsights/index.html) it specifically states that rules and actions can be sent off to Maximo.
So it seems that only Email is supported, unless someone has figured out a way to connect to Maximo?
Upvotes: 2
Views: 251
Reputation: 1464
After consulting with IBM, it turns out that it is not currently possible to achieve this without writing a script inside Maximo, or by writing an intermediate service in Node.Red, despite the documentation.
They say that in time, this feature might be supported more directly.
Upvotes: 0
Reputation: 6133
The answer is not as simple to write it here at SO, but I can guide you with the following answer:
The first option is to write insert queries, here you are able to connect to the tables using the drivers for your database. i.e. We use db2 and I can connect using db2 jdbc
Keep in mind you should now all the tables maximo uses to edit/update/delete maximo uses when working with your own queries.
As for Maximo integration framework, there are scala of options, so it will merely depend on what the other system can export.
Upvotes: 1