Type : SASHELP
The script uses the system catalog 'sashelp.webeis' which is an internal SAS data source, provided by default with the SAS installation.
| 1 | %macro catscan(cat,file) ; |
| 2 | PROC BUILD catalog=&cat batch ; |
| 3 | PRINT SOURCE prtfile="&file" ; |
| 4 | RUN ; |
| 5 | dm 'fslist "&file"' fslist ; |
| 6 | %mend catscan ; |
| 1 | %catscan(sashelp.webeis,webeis.txt) |