<?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 custom message in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700667#M214459</link>
    <description>&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;I have a question&amp;nbsp;&lt;/P&gt;&lt;P&gt;user open SAS application who gets a message&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ex:User Name +Welcome&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Alfred Welcome to SAS&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 21 Nov 2020 09:10:00 GMT</pubDate>
    <dc:creator>BrahmanandaRao</dc:creator>
    <dc:date>2020-11-21T09:10:00Z</dc:date>
    <item>
      <title>custom message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700667#M214459</link>
      <description>&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;I have a question&amp;nbsp;&lt;/P&gt;&lt;P&gt;user open SAS application who gets a message&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ex:User Name +Welcome&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Alfred Welcome to SAS&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Nov 2020 09:10:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700667#M214459</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-11-21T09:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: custom message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700669#M214461</link>
      <description>&lt;P&gt;A google search for "base sas splash screen" gave me &lt;A href="https://communities.sas.com/t5/SAS-Tips-from-the-Community/SAS-Tip-Changing-or-Suppressing-the-Default-SAS-Splash-Screen-on/td-p/442495" target="_blank" rel="noopener"&gt;this&lt;/A&gt; as second hit, which led me to this&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=hostwin&amp;amp;docsetTarget=n0bojvrlj7xse8n1lib27jh94nzs.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank" rel="noopener"&gt;SPLASH System Option&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and this&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=hostwin&amp;amp;docsetTarget=n0psfus5dxd4l0n1thpxtqe11er9.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;SPLASHLOC System Option&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you can see, information is just a Google search away (Maxim 6).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the SPLASHLOC documentation, I take it that you would need to create a separate bitmap for each user and determine in the configuration files from the system User-ID which one to take. Not very practical.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Nov 2020 10:29:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700669#M214461</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-11-21T10:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: custom message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700696#M214474</link>
      <description>&lt;P&gt;In Display Manager sessions (desktop SAS) you can use Proc GROOVY to directly access the power and gamut of Java, which includes Swing components for message dialogs.&lt;/P&gt;
&lt;PRE&gt;proc groovy;
submit;
  import javax.swing.JOptionPane;

  JOptionPane.showMessageDialog(
    null, "Hello there " + System.getProperty("user.name"), "Welcome to SAS",
    JOptionPane.INFORMATION_MESSAGE
  );
endsubmit;
quit;&lt;/PRE&gt;
&lt;P&gt;Will pop up the dialog window&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RichardADeVenezia_0-1605999647697.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/51906i215C2112FA0FD55E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RichardADeVenezia_0-1605999647697.png" alt="RichardADeVenezia_0-1605999647697.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Other SAS clients:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Enterprise Guide (EG) you will need a custom plug-in,&lt;/LI&gt;
&lt;LI&gt;SAS Studio you may need some html snippets and JavaScript.&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Sat, 21 Nov 2020 23:01:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700696#M214474</guid>
      <dc:creator>RichardDeVen</dc:creator>
      <dc:date>2020-11-21T23:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: custom message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700826#M214522</link>
      <description>when I submit the code its been running.............&lt;BR /&gt;I don't know how much time it could be ?</description>
      <pubDate>Mon, 23 Nov 2020 04:41:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700826#M214522</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-11-23T04:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: custom message</title>
      <link>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700834#M214528</link>
      <description>&lt;P&gt;The dialog will be modal and block the SAS session until the OK button is clicked, or the dialog is closed.&amp;nbsp; The dialog might be on a second screen or behind the SAS window -- if Windows, does the dialog appear in your Alt-Tab process list ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How are you starting SAS ?&lt;/P&gt;
&lt;P&gt;What does the LOG window show ?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 05:27:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/custom-message/m-p/700834#M214528</guid>
      <dc:creator>RichardDeVen</dc:creator>
      <dc:date>2020-11-23T05:27:58Z</dc:date>
    </item>
  </channel>
</rss>

