Hi @ballardw
Yes, I just worked out with sashelp. class. And from these three ways, only the first code work, I mean only this code work
data lll (drop=Age)/ view=lll ;
set sashelp.class;;
run;
It means that option DROP or KEEP cannot be written after view.
Error existed in those case
NOTE: Writing HTML5(EGHTML) Body file: EGHTML
27
28 data lll (drop=Age)/ view=lll(drop=Age) ;
____
22
76
ERROR 22-322: Syntax error, expecting one of the following: ALTER, EXECUTE, PROTECT, PW, READ, SOURCE, SRC, WRITE.
ERROR 76-322: Syntax error, statement will be ignored.
29 set sashelp.class;;
30 run;
ERROR: Unable to create WORK.LLL.DATA because WORK.LLL.VIEW already exists.
Do you agree with that, I hope I did not fall into a fallacy here, and any further notice for me as well?
Warmest regards.
Have a good day!
... View more