CRRUI1071E The error handler is missing for the service call.

Explanation

The call statement does not specify an exception handler.

User Response

Modify the call statement to include onException handler_function_name and code an exception handler to handle exceptions thrown by the call statement. For example:
call interface.function(parameters returning to callback_function onException handler_function_name

Feedback