
Sending a Message
Use
To send a message using the Exchange Infrastructure, call the corresponding outbound proxy.
Procedure
Data: l_sys_exception type ref to cx_ai_system_fault,
l_output type
try.
call method
catch cx_ai_system_fault into l_sys_exception.
write: 'System fault: '.
write: l_sys_exception->errortext.
exit.
endtry.
Also see:
commit work.

In the synchronous case, the call is executed immediately. To avoid inconsistencies, use asynchronous communication for updates.