[color=blue:58e00]ods listing close;
ods html path='j:\' body='output.htm';
data test;
do i=1 to 20;
output;
end;
proc print;
run;
ods listing;
ods html close;[/color:58e00]
出现错误提示:
[color=red:58e00]1 ods listing close;
ERROR: Read Access Violation In Task ( Submit ]
Exception occurred at (63CC5C0D)
Task Traceback
2 ods html path='j:\' body='output.htm';
NOTE: Writing HTML Body file: output.htm
ERROR: Generic critical error.[/color:58e00]