Hi All,
I am trying to read a mianframes file through SAS but somehow the code is only reading the alternate lines of input data, Is there something I am missing out on.
Here's the SAS Code I have been trying :
FILENAME FIXIT FTP "&FIXEDFILE" host="dipe.ipc.us.xxxx.com"
user="&mfuser." pass="&mfpass." cd='..' RECFM=F LRECL=200;
DATA FIXED;
INFILE FIXIT ;
INPUT
@04 R_TRANCD $EBCDIC2.
@07 USERCD $EBCDIC2.
@20 TRANSAMT $EBCDIC14.
RUN;
Could you please suggest.
Do you get any warnings in the log?
Are you certain that RECFM=F and LRECL=200 are correct?
Regards,
Michael
What is the organisation of the file on the mainframe (FB, VB, ...) and the record size?
The log from the data step would be helpful.
Small hint:
filename fixit ftp "'&fixedfile'" .....;
lets you omit the cd='..' option. Note the single quotes inside the double quotes.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.