Application management : Tools : Enterprise Talk : Worker parameters : FileXMLWriterWorker parameters
FileXMLWriterWorker parameters
Parameters
Description
generate_file_per_bo
Specify true or false. Default is false. If set to true then an XML file will be generated for each row. The name of each XML will be equal to the name specified in the document data source with an extra underscore [_] and a sequence number added to the name.
element_per_line
Specify true or false. Default is false. If set to true then each line in a multiline field will be enclosed in seperate XML tags.
Example - false:

<property>
<comment>this
is
a
multiline
</comment>
</property>
Example - true:

<property>
<comment>
<TEXTLINE>this</TEXTLINE>
<TEXTLINE>is</TEXTLINE>
<TEXTLINE>a</TEXTLINE>
<TEXTLINE>multiline</TEXTLINE>
</comment>
</property>