<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to open link automatically stored process in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-open-link-automatically-stored-process/m-p/907577#M358251</link>
    <description>&lt;P&gt;From what I've seen, general practice is to code in the short delay and also a link they can click in case the script does not run for some reason.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Dec 2023 15:30:01 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2023-12-12T15:30:01Z</dc:date>
    <item>
      <title>How to open link automatically stored process</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-open-link-automatically-stored-process/m-p/907553#M358240</link>
      <description>hello,&lt;BR /&gt;&lt;BR /&gt;I use a stored process , i need to open a permanent link at the end or the run.&lt;BR /&gt;&lt;BR /&gt;I worte the following code:&lt;BR /&gt;&lt;BR /&gt;data _null_;&lt;BR /&gt;	file _webout;&lt;BR /&gt;	put '&amp;lt;HTML dir="rtl" &amp;gt;';&lt;BR /&gt;	put '&amp;lt;body&amp;gt;';&lt;BR /&gt;	put '&amp;lt;HEAD&amp;gt;&amp;lt;TITLE&amp;gt;PEGA&amp;lt;/TITLE&amp;gt;&amp;lt;/HEAD&amp;gt;';&lt;BR /&gt;	put '&amp;lt;h1&amp;gt;Welcome ';&lt;BR /&gt;	put '&amp;lt;br&amp;gt;';&lt;BR /&gt;	put '&amp;lt;a  href ="&lt;A href="https://crmpg.com" target="_blank"&gt;https://crmpg.com&lt;/A&gt;"&amp;gt;CLICK TO OPEN&amp;lt;/a&amp;gt;';&lt;BR /&gt;	put '&amp;lt;/h1&amp;gt;';&lt;BR /&gt;	put '&amp;lt;/body&amp;gt;';&lt;BR /&gt;	put '&amp;lt;/HTML&amp;gt;';&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;The user need to click on "CLICK TO OPEN" in web browser to get to &lt;A href="https://crmpg.com" target="_blank"&gt;https://crmpg.com&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;Is there a possibility that the link opens automatically without user intervention?&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Dec 2023 14:24:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-open-link-automatically-stored-process/m-p/907553#M358240</guid>
      <dc:creator>shlomiohana</dc:creator>
      <dc:date>2023-12-12T14:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to open link automatically stored process</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-open-link-automatically-stored-process/m-p/907565#M358246</link>
      <description>&lt;P&gt;You could add a JavaScript redirect to the HTML you create. You've probably seen this pattern in action many times.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Whether it works will depend on the trust your browser window/client machine has with your results page (that is, will it allow the script to run).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;html&amp;gt;
 &amp;lt;head&amp;gt;
&amp;lt;script type="text/JavaScript"&amp;gt;
 function Redirect() {
window.location = "https://crmpg.com";
 }
 document.write("You will be redirected to the new page in 5 seconds.");
 setTimeout(function() {
Redirect();
 }, 5000);
&amp;lt;/script&amp;gt;
 &amp;lt;/head&amp;gt;
&amp;lt;/html&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 14:56:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-open-link-automatically-stored-process/m-p/907565#M358246</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2023-12-12T14:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to open link automatically stored process</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-open-link-automatically-stored-process/m-p/907573#M358249</link>
      <description>It works, how do I change that there won't be a 5 second wait, that the user will go directly to the link</description>
      <pubDate>Tue, 12 Dec 2023 15:24:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-open-link-automatically-stored-process/m-p/907573#M358249</guid>
      <dc:creator>shlomiohana</dc:creator>
      <dc:date>2023-12-12T15:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to open link automatically stored process</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-open-link-automatically-stored-process/m-p/907577#M358251</link>
      <description>&lt;P&gt;From what I've seen, general practice is to code in the short delay and also a link they can click in case the script does not run for some reason.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 15:30:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-open-link-automatically-stored-process/m-p/907577#M358251</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2023-12-12T15:30:01Z</dc:date>
    </item>
  </channel>
</rss>

