<?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: Create pop up window with message in Developers</title>
    <link>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49365#M2931</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let message = test;&lt;/P&gt;&lt;P&gt;data _null_ ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file _webout ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;val = cat('&amp;lt;script type="text/JavaScript"&amp;gt;alert(" ', "&amp;amp;message",' ")&amp;lt;/script&amp;gt;');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put val;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Feb 2012 15:31:14 GMT</pubDate>
    <dc:creator>NN</dc:creator>
    <dc:date>2012-02-23T15:31:14Z</dc:date>
    <item>
      <title>Create pop up window with message</title>
      <link>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49358#M2924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using stored process, I want to create a popup window with message based on condition&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have tried with file _webout, but it didnt work. your help would be much appreciated in this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2012 20:15:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49358#M2924</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2012-02-08T20:15:57Z</dc:date>
    </item>
    <item>
      <title>Create pop up window with message</title>
      <link>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49359#M2925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Maybe you could try using Javascript..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cannot test the below code.. But you could try it out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; data _null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; file _webout ;&lt;/P&gt;&lt;P&gt;val = '&amp;lt;script type="text/JavaScript"&amp;gt;alert("MY MESSAGE HERE ")&amp;lt;/script&amp;gt;';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; put val;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2012 19:03:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49359#M2925</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2012-02-10T19:03:21Z</dc:date>
    </item>
    <item>
      <title>Create pop up window with message</title>
      <link>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49360#M2926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might want to the code below. Haven't test this one though..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want more flexible conditioning on how you want to display your html, you can also use the _webout with put statements although i think it's a bit messy once your code once becomes long.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Milton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;data _null_; &lt;BR /&gt;&amp;nbsp; format infile $char256.; &lt;BR /&gt;&amp;nbsp; input;&lt;BR /&gt;&amp;nbsp; infile = resolve(_infile_);&lt;BR /&gt;&amp;nbsp; file _webout;&lt;BR /&gt;&amp;nbsp; put infile;&lt;BR /&gt;cards4;&lt;BR /&gt;&amp;lt;HTML&amp;gt;&lt;BR /&gt;&amp;lt;BODY&amp;gt; &lt;BR /&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;BR /&gt;alert("&amp;amp;MESSAGE.");&lt;BR /&gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/BODY&amp;gt;&lt;BR /&gt;&amp;lt;/HTML&amp;gt;&lt;BR /&gt;;;;;&lt;BR /&gt;run;&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2012 03:07:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49360#M2926</guid>
      <dc:creator>milts</dc:creator>
      <dc:date>2012-02-14T03:07:47Z</dc:date>
    </item>
    <item>
      <title>Create pop up window with message</title>
      <link>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49361#M2927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks a lot foryour reponse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting insufficient authorisation access when i am using this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;15 &lt;/P&gt;&lt;P&gt;16 %let MESSAGE =SUNIL;&lt;/P&gt;&lt;P&gt;17 data _null_;&lt;/P&gt;&lt;P&gt;18 format infile $char256.;&lt;/P&gt;&lt;P&gt;19 input;&lt;/P&gt;&lt;P&gt;20 infile = resolve(_infile_);&lt;/P&gt;&lt;P&gt;21 file _webout;&lt;/P&gt;&lt;P&gt;22 put infile;&lt;/P&gt;&lt;P&gt;23 cards4;&lt;/P&gt;&lt;P&gt;ERROR: Insufficient authorization to access /opt/app/SAS/config/Lev1/SASApp/_webout.dat.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;31 ;;;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2012 06:53:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49361#M2927</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2012-02-14T06:53:53Z</dc:date>
    </item>
    <item>
      <title>Create pop up window with message</title>
      <link>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49362#M2928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks a lot for your response. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting insufficient authorisation on as below, its routing to /opt/app/SAS/config/Lev1/SASApp/_webout.dat by default&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;16 data _null_ ;&lt;/P&gt;&lt;P&gt;17 file _webout ;&lt;/P&gt;&lt;P&gt;18 val = '&amp;lt;script type="text/JavaScript"&amp;gt;alert("MY MESSAGE HERE ")&amp;lt;/script&amp;gt;';&lt;/P&gt;&lt;P&gt;19 put val;&lt;/P&gt;&lt;P&gt;20 run;&lt;/P&gt;&lt;P&gt;ERROR: Insufficient authorization to access /opt/app/SAS/config/Lev1/SASApp/_webout.dat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2012 06:56:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49362#M2928</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2012-02-14T06:56:31Z</dc:date>
    </item>
    <item>
      <title>Create pop up window with message</title>
      <link>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49363#M2929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Just check a few things ..&lt;/P&gt;&lt;P&gt;When you modify your stored process ensure you have selected stored process server... &lt;/P&gt;&lt;P&gt;There will two checkboxes one for transient package and the other for Streaming output... Ensure to check only the Streaming output and uncheck the transient package.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2012 18:31:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49363#M2929</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2012-02-14T18:31:50Z</dc:date>
    </item>
    <item>
      <title>Create pop up window with message</title>
      <link>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49364#M2930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I am getting popup message while using below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; data _null_ ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; file _webout ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; val = '&amp;lt;script type="text/JavaScript"&amp;gt;alert("MY MESSAGE HERE ")&amp;lt;/script&amp;gt;';&lt;/P&gt;&lt;P&gt;&amp;nbsp; put val;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but getting error while using macro variable in above alert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 11pt;"&gt;%let&lt;/SPAN&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt; Trigger_Button = ALL Buttons;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;24&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; +&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;25&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; + data _null_ ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;26&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; +&amp;nbsp; file _webout ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;27&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; +&amp;nbsp; val = "&amp;lt;script type='text/JavaScript'&amp;gt;alert( "&amp;amp;Trigger_Button." )&amp;lt;/script&amp;gt;";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;28&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; +&amp;nbsp; put val;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;29&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; + run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; +&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;31&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; +&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;32&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; +%mend;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; +%mail1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The SAS System&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: blue; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: green; font-size: 11pt;"&gt;NOTE: Line generated by the macro variable "TRIGGER_BUTTON".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: black; font-size: 11pt;"&gt;33&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;lt;script type='text/JavaScript'&amp;gt;alert( "ALL Buttons&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: red; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ___________________________________________&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: red; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 49&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 388&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: red; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 76&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: green; font-size: 11pt;"&gt;NOTE 49-169: The meaning of an identifier after a quoted string may change in a future SAS release.&amp;nbsp; Inserting white space between a quoted string and the succeeding identifier is recommended.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: red; font-size: 11pt;"&gt;ERROR 388-185: Expecting an arithmetic operator.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: green; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: white; font-family: 'Courier New'; color: red; font-size: 11pt;"&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one help me how to use macro variable along with comment in above &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 11:16:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49364#M2930</guid>
      <dc:creator>sunilreddy</dc:creator>
      <dc:date>2012-02-23T11:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create pop up window with message</title>
      <link>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49365#M2931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let message = test;&lt;/P&gt;&lt;P&gt;data _null_ ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file _webout ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;val = cat('&amp;lt;script type="text/JavaScript"&amp;gt;alert(" ', "&amp;amp;message",' ")&amp;lt;/script&amp;gt;');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put val;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 15:31:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Create-pop-up-window-with-message/m-p/49365#M2931</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2012-02-23T15:31:14Z</dc:date>
    </item>
  </channel>
</rss>

