Can anyone suggest a way to export records to a text file that actually includes static text on each line.
I already realise that LIST_TABLE_START and LIST_TABLE_END are not useable in a text file export.
I need to export the following data but cannot see any way to do it.
mystatictext,0,A<<LOOP_ITERATION>>,<<RecordValue1>>
mystatictext,0,B<<LOOP_ITERATION>>,<<RecordValue2>>
mystatictext,0,C<<LOOP_ITERATION>>,<<RecordValue3>>
The ultimate output should look like this.....
mystatictext,0,A1,RecordOne Data a
mystatictext,0,B1,RecordOne Data b
mystatictext,0,C1,RecordOne Data c
mystatictext,0,A2,RecordOne Data a
mystatictext,0,B2,RecordOne Data b
mystatictext,0,C2,RecordOne Data c
mystatictext,0,A3,RecordOne Data a
mystatictext,0,B3,RecordOne Data b
mystatictext,0,C3,RecordOne Data c
I don't think this can be done as html as I must end up with a text file.