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;
... View more