I'm trying to save a graphic output into a separate catalog within WORK library using GOUT=
option:
proc gchart data=sashelp.cars gout=car;
donut type/ name="car";
run;
When I do it in Base SAS (9.4), all works, I can see this catalog in Explorer or running proc catalog catalog=car; contents; run;
But when I do the same in EG 7.1 catalog is not created and proc catalog
gives an error ERROR: Catalog WORK.CAR does not exist
.
Can it be fixed?