It seems that the latest version of base SAS has changed the way source program statements are numbered on the SAS log. Here's a sample of how SAS displayed numbers on the SASLOG file: 12 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR STYLE=HtmlBlue 12 ! STYLESHEET=(URL="file:///F:/Program%20Files/SASHome/x86/SASEnterpriseGuide/5.1/Styles/HtmlBlue.css") NOGTITLE NOGFOOTNOTE 12 ! GPATH=&sasworklocation ENCODING=UTF8 options(rolap="on"); Now, it looks like this: 15 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR 16 STYLE=HtmlBlue 17 STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HtmlBlue.css") 18 NOGTITLE 19 NOGFOOTNOTE 20 GPATH=&sasworklocation 21 ENCODING=UTF8 22 options(rolap="on") 23 ; So, it seems that long program source statements have different line numbers instead of a single line number (with an ! indicating it's a single statement. The problem with this behavioral change is that it is causing a program we use to fail. Is there a way to specify in an OPTIONS statement to restore the old behavior? Also, can user-specified OPTIONS statements take effect BEFORE the SAS/EG or SAS Web Studio options?
... View more