apple
New Member
Howdie!
I need to contain into specific variables each data taken from the imported file with a tab delimiter. How can I work it out?
Here's the code I created:
I need to contain into specific variables each data taken from the imported file with a tab delimiter. How can I work it out?

Here's the code I created:
Code:
define work-table wrkfile
field srcid as char
field destid as char
field accode as char
field d_dial as char
field authcode as char
field s_time as char
field cdur as char
field c_cost as decimal format '>>,>>9.99'
field acc_code as char.
INPUT FROM VALUE(cfullname).
REPEAT:
create wrkfile.
import delimiter "~011" wrkfile.
END.
INPUT CLOSE.