Show TOC

Background documentationEXCEPTION Element Locate this document in the navigation structure

 

You use the EXCEPTION element to catch an exception raised in a called module and jump to a particular state or template.

Integration

Use ABAP exception handling, see the example below.

Example

Syntax in the Standalone ITS

In the flow file in the standalone ITS, the syntax is as follows:

Syntax Syntax

  1. state name="myState">
      <module name="myModule" type="RFC">
        <exception name="myException"
          next_template="error">
        </exception>
      </module>
    </state>
End of the source code.
Syntax in the Integrated ITS