BookmarkSubscribeRSS Feed
radha009
Quartz | Level 8

How to program in SAS to launch a url in IE Browser on my computer and click on a link

2 REPLIES 2
Kurt_Bremser
Super User

@radha009 wrote:

How to program in SAS to launch a url in IE Browser on my computer and click on a link


This question can not sufficiently be answered without knowledge of your SAS architecture.

  • Do you run SAS locally, or on a remote server?
  • How do you interface with SAS? (Display Manager, SAS Studio, Enterprise Guide)
Quentin
Super User

On windows from a command prompt, you can run:

start iexplore "http://sas.com"

To open IE to sas.com.

 

So if you're in PC SAS, it could be a simple as submitting:

x 'start iexplore "http://sas.com"' ;

That will open internet explorer to a specified URL.  Clicking a link would take some sort of automation.  But if you just want to get to one URL, probably easiest to just specify it in the command.

 

But as @Kurt_Bremser mentioned, this approach may not work in your SAS environment. 

 

 

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 1887 views
  • 0 likes
  • 3 in conversation