If the scan input is a SAS log created during a SAS session, certain system options must be set to assure that the log has the necessary format and content.
Set the following SAS system options so the log has the necessary format and content
//STEP01 EXEC SASrr,OPTIONS=ALTLOG=PRTLG1,
DCB=(RECFM=FB,LRECL=133)
Specify 80 character card image.
Set to 132, the print line width of the SAS log. This creates a file with LRECL of 133 to allow one byte for carriage control character.
Includes source statements in the SAS log.
Includes code generated by %INCLUDE statements. If you do not want to analyze the code generated by %INCLUDE statements, specify NOSOURCE2.
Includes code generated by macros. If you do not want to analyze the code generated by macros, specify NOMPRINT.
| Copyright © 2009 CA. All rights reserved. | Email CA about this topic |