BookmarkSubscribeRSS Feed
DavidJ
Calcite | Level 5
I am trying to produce a simple line chart in batch on z/os and print the chart off to the client (I do not have access to SAS on any other platform).

Sample program follows:
In JCL for now I have the SASLIST DD commented out.

data final;
input age survival;
cards;
65 88
75 30
87 12
94 3
;
run;

proc goptions reset=all;
proc gplot data=final;
plot survival*age / overlay haxis=axis1 hminor=4
vaxis=axis2 vminor=1;
symbol1 i=join v=dot h=1;
axis1 order=(65 to 100 by 5) label=('Age')
major=(height=1) minor=(height=0.5);
axis2 order=(0 to 100 by 10) label=('Survival')
major=(height=1) minor=(height=0.5);
run;
quit;


The program comes back with a RC of 8 in batch and a message DEVICE INITIALIZATION FAILED. Other SASLIST output (routed to a AFB printer) from things like PROC FREQ and PROC PRINT are being created in the batch job's output under SASLIST. I have tried device=png and device=gif, which eliminates the message, but still generates no output.
2 REPLIES 2
ArtC
Rhodochrosite | Level 12
I am not a zOS user but would suspect that you need to add:
(untested code)
[pre]
filename outplt 'filelocation.on.your.system...emf';
goptions reset=all;
goptions gsfname=outplt device=emf;
[/pre]
DavidJ
Calcite | Level 5
I added the options you suggested, used a device of gif570, and files are being
generated which I downloaded and looked at successfully. Thanks

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1272 views
  • 0 likes
  • 2 in conversation