BookmarkSubscribeRSS Feed
GeorgeSAS
Lapis Lazuli | Level 10

Hello everyone,

Is there any SAS code(not in command line ,but just in SAS program code,it should be interactively,such as call a macro that can run  'SAVE AS' ) that can operate SAS menu?

Give an example:

I want write a row of SAS code(e.g:"%sysfunc(SaveAs))" ,after I run that code, it will show me "SAVE AS menu"(just as if I click with my mouse on : file-->save as)

Thanks

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Not really.  I mean you could use proc window or something to get user input, then save something to a file by using a datastep and file.  Why though?  SAS scripts aren't really the place to be doing UI's?  Give a more verbose description of the problem.

ballardw
Super User

Pretty much most of the SAS commands can be executed with the DM statement. You might be looking for DLGOPEN

Tom
Super User Tom
Super User

Use the DM statement to call a command line command.

Use the DLGSAVE to open the SAVE As window.

dm 'dlgsave';

SAS(R) 9.2 Companion for Windows, Second Edition

SASKiwi
PROC Star

Note that previous posts suggestions will only work in SAS Display Manager. If you use Enterprise Guide then it can't be done.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 4 replies
  • 895 views
  • 0 likes
  • 5 in conversation