BookmarkSubscribeRSS Feed
DrDave
Fluorite | Level 6

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;

2 REPLIES 2
Reeza
Super User
This a SAS Studio issue, you can report it to Tech Support. There is no issue when running it on a full version of SAS, but the display uses the older style of SAS output and a custom display which doesn't appear to work in SAS Studio.
DrDave
Fluorite | Level 6

Reeza,

 

Thank you very much for your quick response and solution.

 

R/S

 

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 936 views
  • 2 likes
  • 2 in conversation