I get the following error message when I run code from the SAS Sample Library. I am using SAS On Demand for Academics and trying to execute the PM PROC.
WARNING: There is a problem opening the DISPLAY. The NODISPLAY option is turned on.
I don't see any option to turn display on or off.
I have double checked the example code and when it runs it is supposed to open a Display showing a Gantt Chart.
Any help would be appreciated.
data software;
input Descrpt $char20.
Duration 23-24
Activity $ 27-34
Succesr1 $ 37-44
Succesr2 $ 47-54;
datalines;
Initial Testing 20 TESTING RECODE
Prel. Documentation 15 PRELDOC DOCEDREV QATEST
Meet Marketing 1 MEETMKT RECODE
Recoding 5 RECODE DOCEDREV QATEST
QA Test Approve 10 QATEST PROD
Doc. Edit and Revise 10 DOCEDREV PROD
Production 1 PROD
;
proc pm data=software
out=intro1
interval=day
date='01mar04'd;
id descrpt;
activity activity;
duration duration;
successor succesr1 succesr2;
run;
Reeza,
Thank you very much for your quick response and solution.
R/S
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.