Does anyone have a quik example of a program that does the following...
1. opens a csv file as input, opens a second csv file as output
2. reads the data from input file and moves fields to the output file and writes a record
New at this Lawson COBOL stuff.
I assume its simple like...
open input inputcsfvile
open output outputcsvfile
move input-field-a to output-field-a.
move input-field-b to output-field-b.
write outputcsvfile
close inputcsvfile
close outputcsvfile
Thanks!