Sending output data from a map to an IBM Integration Bus node

You can use a IBM Transformation Extender PUT map rule to send output data to another IBM® Integration Bus node, either immediately, or based on the outcome of the map.

To send the output data, wire an output terminal to a IBM Transformation Extender map node or RUN map that uses the PUT rule. You wire a map node to the output terminal specified in the map's message flow. The map must use the PUT rule and specify WIRE as the adapter name:

=PUT(“WIRE”, “output_terminal_name”,data)

Optionally, you can specify that the message is to be sent immediately. The -NOW argument sends the message to the output terminal as soon as the PUT rule is processed. When you omit the -NOW argument, a map node sends a message to the output terminal when the map completes, and a RUN map sends a message to the output terminal when the top map completes. If you omit the -NOW argument and the map node or RUN map fails, the message is not sent.

=PUT(“WIRE”, “output_terminal_name -NOW”,data)