Solved

FSM - calling another MPM from a custom MPM

  • 18 July 2022
  • 1 reply
  • 57 views

Badge +2
  • Do Gooder
  • 2 replies

Has anyone tried calling/triggering a list of MPMs from within a custom MPM. I have a requirement of calling other MPMs (custom and OOTB) from within the code. Updating objects in both FSM as well as PSO.

 

 

icon

Best answer by Saranga Amaraweera 18 July 2022, 16:49

View original

1 reply

Userlevel 7
Badge +22

@KKK ,

You may need to write a common method to call the perform messages in your custom mpm by taking the message_name, parameters as input parameters and then the method implementation to be built on a manager class. Further you could have a list to store the mpm names and check whether the matching messages are contained in the list of items to be executed in your code. Also, you might require reflection if you need to invoke the methods of indirect assemblies.

Reply