Text qualifier

Hello,
I’d like to unload data into a flat file. Every column with text content has to be wrapped by a text qualifier (e.g. double quotes).
How can I configure the “DELIMITED_DATA_WRITER” component or the “FIXLEN_DATA_WRITER” component to fulfill that requirement?
Regards,
Carsten

Hello,

if you want change a value, it is better to use Reformat component:

//#TL function transform(){ $0.FieldX:="\\"" + $RecordName.FieldX + "\\""; }

You can also use STRUCTURE_WRITER, this is only one, anoter writers don’t allow it:

<Node fileURL=“etc.out” id=“STRUCTURE_WRITER” type=“STRUCTURE_WRITER” mask=“”$Field2" "/>