This is the code i have used to read the flatfile PROC IMPORT DATAFILE=".........\Documents\SEPA\lhbml430.txt" OUT=sepa DBMS=dlm REPLACE; GETNAMES=no; delimiter='7F'x; RUN; There is neither ERROR message nor output generated.its only throwing the note message as below: Am having the program template to read this flat file data in mainframes but only selected variables are mentioned in that program,my task here is to get another 5 more variables in to the output from this input(flat file)for which i dont know those variable position's to bring the data for it :. I have FTP 'd the flat file from the mainframes to my local system, but unable to view it to get my required columns positions. Hence i just want to know the columns positions/structure of flat file not importing the data from it.
... View more