PUT rule syntax
To dynamically create a document from a IBM Transformation Extender map, configure a map rule to use the PUT function and the WIRE keyword. Optionally, you can use the -NOW argument to create the document as soon as the PUT function is processed, rather than when the map completes.
The map rule must use the PUT function and specify WIRE as
the adapter name:
=PUT(“WIRE”, “output_document”,data)
Optionally, you can specify that the document is to be created immediately. The
-NOW argument creates the output document as soon as the PUT rule is processed.
When you omit the -NOW argument, the WTX Map service creates the document when the map
completes, and a RUN map creates the document when the parent map completes. When you specify the
-NOW argument, the document is created even if the map or RUN map
fails.
=PUT(“WIRE”, “output_document -NOW”,data)
The WIRE and -NOW keywords are not case-sensitive.