Hi,
I am trying to create to export a flat file using an XMLPort by creating an extension. I am able to retrieve the data, however , I would also like to add some texts on each line just before the field attribute.

Hi,
I am trying to create to export a flat file using an XMLPort by creating an extension. I am able to retrieve the data, however , I would also like to add some texts on each line just before the field attribute.
Creat a trigger OnBeforePassVariable of Lines
trigger OnBeforePassVariable()
begin
mytext :='someString';
end;