Blue,
It can be achieved using DATASET concept. Below is the general flow of program to read the file.
/* Open file for reading*/
OPEN DATASET <file name> FOR INPUT ENCODING DEFAULT
/*Read data from the file*/
DO.
READ DATASET <file name> INTO wa.
APPEND wa INTO int_table
ENDDO.
/*close the file*/
CLOSE DATASET <file name>
There many discussions found in the forum on how to use DATASET for file operations. Please go through them and you will have an idea.
~Athreya