Send message from global to another project view

I have a event on a button on a view in global project .

system.util.sendMessage(project = 'Mobile' , messageHandler = 'msgHandlerViewGoBack' ,scope ='CSG')
system.perspective.print("message send")

I have configured that message handler on another project view with in the same gateway

is there is something i am doing wrong or is there another way to achieve that ?

If I understand correctly, you need to combine the use of system.util.sendMessage and system.persepective.sendMessage.

The util one will send a message to the project, then a project message session event would use the perspective one.

1 Like