Maximo Open Forum

 View Only

 Is there a way to include old values while publishing a message to an external system ?

  • Integrations
Soumya Prasad Rana's profile image
Soumya Prasad Rana posted 03-20-2026 02:21

I am working on a MIF requirement where my external system need the old value and the change value for a particular field. Is there a way to achieve this using publish channel ?

Prashant Bavane's profile image
Prashant Bavane

Hi Soumya ,

I am not sure your exact sequence of building the final message to be published , but you can use automation script and capture
 currVal = <yourmbo>.getMboValue().getString();
 oldVal = <yourmbo>.getMboValue().getPreviousValue().asString();

and then have this values sent as part of message being published.