...
For apps that use SAP, all your actions should be subclasses of SAPBaseAction which is in turn a subclass of IDDAction which is a subclass of Strut's Action. (org.apache.struts.action is the core of the struts framework, providing the "Controller" aspect of a MVC model. Action is one of the classes in this core code.)
If the action is an entry point (i.e., chained to /EntryAction or /XXXEntryAction which extends
It will stop any time a rfc call results in an Exception. In the rare case you need to do something else (like continue other processing) when an Exception is encountered, you can wrap a try catch on MessageRuntimeException around your service execute calls.
...