Hey all,
I am trying to find a nice way of creating a header row for an export file. Currently for any of the programs that I have written, I have been just hard coding either a put statement with the commas in it or using an export delimiter ',' statement with each of the headers in quotes.
I would like to be able to use the actual definition for the field instead to create a header row rather than just typing it all the way out.
To try to help describe here is some psuedo code:
Any help would be appreciated
Thanks,
I am trying to find a nice way of creating a header row for an export file. Currently for any of the programs that I have written, I have been just hard coding either a put statement with the commas in it or using an export delimiter ',' statement with each of the headers in quotes.
Code:
PUT STREAM rpt UNFORMATTED "Account Number,Statement Type,New Statement Type".
I would like to be able to use the actual definition for the field instead to create a header row rather than just typing it all the way out.
To try to help describe here is some psuedo code:
Code:
EXPORT DELIMITER ',' _field.title _field2.title _field3.title...
Any help would be appreciated
Thanks,