<?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: Is there anything wrong with my script? in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-there-anything-wrong-with-my-script/m-p/54261#M6705</link>
    <description>Hey scott, &lt;BR /&gt;
&lt;BR /&gt;
thanks heaps. amended my script to something like that and works well &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
%Let dir = \\int\Collaborate\PI\Portfoli\PI-Pricing\Risk &amp;amp; Operations\Asset Risk\PROJECTS\VOR Monthly Report Tool\HTML\;&lt;BR /&gt;
%Let frameset = gio_frame.html;&lt;BR /&gt;
%Let leftframe = gio_inforce_leftframe.html;&lt;BR /&gt;
%Let righttopframe = rightf_all.html;&lt;BR /&gt;
%Let output = results.html;&lt;BR /&gt;
&lt;BR /&gt;
Filename gioframe "&amp;amp;dir&amp;amp;frameset";&lt;BR /&gt;
Data _Null_;&lt;BR /&gt;
File gioframe;&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put "";&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put "";&lt;BR /&gt;
Put "";&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Run;</description>
    <pubDate>Tue, 09 Feb 2010 04:02:37 GMT</pubDate>
    <dc:creator>Yennie</dc:creator>
    <dc:date>2010-02-09T04:02:37Z</dc:date>
    <item>
      <title>Is there anything wrong with my script?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-there-anything-wrong-with-my-script/m-p/54258#M6702</link>
      <description>Hey all... &lt;BR /&gt;
&lt;BR /&gt;
I have written this piece of code to create a frameset for my html pages... however the frame page is showing up as a blank page...&lt;BR /&gt;
&lt;BR /&gt;
%Let dir = \\int\Collaborate\PI\Portfoli\PI-Pricing\Risk &amp;amp; Operations\Asset Risk\PROJECTS\VOR Monthly Report Tool\HTML;&lt;BR /&gt;
%Let frameset = gio_frame.html;&lt;BR /&gt;
%Let leftframe = gio_inforce_leftframe.html;&lt;BR /&gt;
%Let righttopframe = rightf_all.html;&lt;BR /&gt;
Filename gioframe "&amp;amp;dir\&amp;amp;frameset";&lt;BR /&gt;
Data _Null_;&lt;BR /&gt;
File gioframe;&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Run;&lt;BR /&gt;
&lt;BR /&gt;
does anyone know the reason why it's blank? &lt;BR /&gt;
&lt;BR /&gt;
cheers&lt;BR /&gt;
yennie</description>
      <pubDate>Tue, 09 Feb 2010 01:34:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-there-anything-wrong-with-my-script/m-p/54258#M6702</guid>
      <dc:creator>Yennie</dc:creator>
      <dc:date>2010-02-09T01:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is there anything wrong with my script?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-there-anything-wrong-with-my-script/m-p/54259#M6703</link>
      <description>and i forgot to mention it's &lt;BR /&gt;
%Let output = results.html;&lt;BR /&gt;
&lt;BR /&gt;
cheers,&lt;BR /&gt;
yennie</description>
      <pubDate>Tue, 09 Feb 2010 01:36:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-there-anything-wrong-with-my-script/m-p/54259#M6703</guid>
      <dc:creator>Yennie</dc:creator>
      <dc:date>2010-02-09T01:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is there anything wrong with my script?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-there-anything-wrong-with-my-script/m-p/54260#M6704</link>
      <description>With your SAS code, I expect you are getting some type of SAS execution/compilation error, which would be most useful to share.  &lt;BR /&gt;
&lt;BR /&gt;
You will likely find the problem having to do with using quoted-strings and macro variables.  A PUT statement will not resolve a macro variable when used with a single-quoted literal.  So you need to use double-quotes but since the HTML tag syntax also requires quotes, you must duplicate your quote character for each instance where you want a double-quote to be generated, such as:&lt;BR /&gt;
&lt;BR /&gt;
1    %let my_quote = Yes, The New Orleans Saints won the Super Bowl!;&lt;BR /&gt;
2    data _null_;&lt;BR /&gt;
3    putlog "Hello - I say to you all: " /// """&amp;amp;my_quote""";&lt;BR /&gt;
4    run;&lt;BR /&gt;
&lt;BR /&gt;
Hello - I say to you all:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Yes, The New Orleans Saints won the Super Bowl!"&lt;BR /&gt;
NOTE: DATA statement used (Total process time):&lt;BR /&gt;
      real time           0.01 seconds&lt;BR /&gt;
      cpu time            0.01 seconds&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
Recommended Google advanced search argument, this topic/post:&lt;BR /&gt;
&lt;BR /&gt;
using macro variables quoted strings site:sas.com</description>
      <pubDate>Tue, 09 Feb 2010 02:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-there-anything-wrong-with-my-script/m-p/54260#M6704</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-02-09T02:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Is there anything wrong with my script?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-there-anything-wrong-with-my-script/m-p/54261#M6705</link>
      <description>Hey scott, &lt;BR /&gt;
&lt;BR /&gt;
thanks heaps. amended my script to something like that and works well &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
%Let dir = \\int\Collaborate\PI\Portfoli\PI-Pricing\Risk &amp;amp; Operations\Asset Risk\PROJECTS\VOR Monthly Report Tool\HTML\;&lt;BR /&gt;
%Let frameset = gio_frame.html;&lt;BR /&gt;
%Let leftframe = gio_inforce_leftframe.html;&lt;BR /&gt;
%Let righttopframe = rightf_all.html;&lt;BR /&gt;
%Let output = results.html;&lt;BR /&gt;
&lt;BR /&gt;
Filename gioframe "&amp;amp;dir&amp;amp;frameset";&lt;BR /&gt;
Data _Null_;&lt;BR /&gt;
File gioframe;&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put "";&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put "";&lt;BR /&gt;
Put "";&lt;BR /&gt;
Put '';&lt;BR /&gt;
Put '';&lt;BR /&gt;
Run;</description>
      <pubDate>Tue, 09 Feb 2010 04:02:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-there-anything-wrong-with-my-script/m-p/54261#M6705</guid>
      <dc:creator>Yennie</dc:creator>
      <dc:date>2010-02-09T04:02:37Z</dc:date>
    </item>
  </channel>
</rss>

