The easiest way to identify all
of your output objects is with the ODS TRACE statement. Because the
ODS TRACE statement is a global statement, you can place it anywhere
in your program. By using the ODS TRACE statement, you can see all
of the output objects at a glance. Because you want to select or exclude
output objects created only by PROC UNIVARIATE, place the ODS TRACE
ON statement before the PROC UNIVARIATE step. Place the ODS TRACE
OFF statement after the PROC UNIVARIATE step to stop the generation
of trace information.
ods trace on;
proc univariate data=prdsale;
by Country;
var actual;
run;
ods trace off;