sequential or member
of a PDS or PDSE1
|
||
1The type depends on what the fileref is associated with. |
filename nextone '&mytemp' disp=new lrecl=80 blksize=320 space=(trk,(3)); data out; file nextone; put ...; run;
filename in 'userid.input'; filename out 'userid.output'; data; infile in; input; file out dcb=in; put _infile_; run;
filename out 'user.output' disp=mod; data _null_; /* data is appended to 'user.output' */ file out; put ... ; run; data _null_; /* data is written at the beginning of */ /* 'user.output' */ file out old; put ... ; run; data _null_; /* data is written at the beginning of */ /* 'user.output' */ file out; put ... ; run; data _null_; /* data is appended to 'user.output' */ file out mod; put ... ; run;
file outdd noprint;