<?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 it possible to click on a preimage or postimage in a proc report. in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15546#M3379</link>
    <description>the goal is to link to an other stored process giving along the ID as a parameter&lt;BR /&gt;
&lt;BR /&gt;
so not to an anchor</description>
    <pubDate>Wed, 02 Mar 2011 07:01:22 GMT</pubDate>
    <dc:creator>Filipvdr</dc:creator>
    <dc:date>2011-03-02T07:01:22Z</dc:date>
    <item>
      <title>Is it possible to click on a preimage or postimage in a proc report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15542#M3375</link>
      <description>compute Event_type;&lt;BR /&gt;
	if event_type eq 'Move In' then &lt;BR /&gt;
	 	call define (_col_,'style','style=[preimage="http://www.stapleheadquarters.com/industrial-staplers/arrow-r.gif" hreftarget="_blank"]');&lt;BR /&gt;
	if event_type eq 'Move In'  then&lt;BR /&gt;
	 	CALL DEFINE(_COL_, 'URL', 'http://www.google.be' ); &lt;BR /&gt;
endcomp;&lt;BR /&gt;
&lt;BR /&gt;
can i make a link on the preimage?</description>
      <pubDate>Wed, 23 Feb 2011 10:57:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15542#M3375</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2011-02-23T10:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to click on a preimage or postimage in a proc report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15543#M3376</link>
      <description>it is possible&lt;BR /&gt;
&lt;BR /&gt;
found it in &lt;A href="http://www.wuss.org/proceedings10/TUT/3027_1_TUT-Zender.pdf" target="_blank"&gt;http://www.wuss.org/proceedings10/TUT/3027_1_TUT-Zender.pdf&lt;/A&gt; (this is a quite good paper)&lt;BR /&gt;
[pre]&lt;BR /&gt;
compute Event_type;&lt;BR /&gt;
	if event_type eq 'Move In' then &lt;BR /&gt;
	 	call define (_col_,'style','style=[preimage="http://www.stapleheadquarters.com/industrial-staplers/arrow-r.gif" PREHTML="&lt;A href="http://www.sas.com" target="_blank"&gt;" POSTHTML="&lt;/A&gt;" hreftarget="_blank"]');&lt;BR /&gt;
endcomp;&lt;BR /&gt;
[/pre]

Message was edited by: Filipvdr</description>
      <pubDate>Wed, 23 Feb 2011 11:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15543#M3376</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2011-02-23T11:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to click on a preimage or postimage in a proc report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15544#M3377</link>
      <description>how can i put an id in this url?&lt;BR /&gt;
&lt;BR /&gt;
compute Event_type;&lt;BR /&gt;
	if event_type eq 'Move In' then&lt;BR /&gt;
	 	call define (_col_,'style',"'style=[preimage='http://www.stapleheadquarters.com/industrial-staplers/arrow-r.gif' PREHTML='&lt;LINK href="https://communities.sas.com/Test_" /&gt;' POSTHTML='']'");&lt;BR /&gt;
endcomp;&lt;BR /&gt;
seems to not work..&lt;BR /&gt;
&lt;BR /&gt;
LINK = A&lt;BR /&gt;
&lt;BR /&gt;
Message was edited by: Filipvdr

Message was edited by: Filipvdr</description>
      <pubDate>Tue, 01 Mar 2011 07:39:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15544#M3377</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2011-03-01T07:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to click on a preimage or postimage in a proc report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15545#M3378</link>
      <description>Hi:&lt;BR /&gt;
  I generally see a &amp;lt;LINK&amp;gt; tag used in the &amp;lt;HEAD&amp;gt; section of an HTML page to link to the location of a CSS file or other content.&lt;BR /&gt;
 &lt;BR /&gt;
  The way I was taught to use "named" anchors within a document was to use the NAME= attribute in 1 ANCHOR tag to "set" the name and then code another ANCHOR tag to navigate to the section. So, assuming you have this in your HTML:&lt;BR /&gt;
                               &lt;BR /&gt;
&amp;lt;a name="IDX"&amp;gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;
...more HTML for a TABLE of some kind...&lt;BR /&gt;
             &lt;BR /&gt;
&amp;lt;a name="IDX1&amp;gt;&amp;lt;/a&amp;gt;&lt;BR /&gt;
...more HTML for a second TABLE ...&lt;BR /&gt;
                          &lt;BR /&gt;
           &lt;BR /&gt;
Then this ANCHOR tag link, probably used in an HTML FRAME, would take you to the FIRST table:&lt;BR /&gt;
&amp;lt;a href="c:\temp\body.html#IDX" target="body"&amp;gt;Table 1&amp;lt;/a&amp;gt;&lt;BR /&gt;
 &lt;BR /&gt;
And this ANCHOR tag link would take you to the second table:&lt;BR /&gt;
&amp;lt;a href="c:\temp\body.html#IDX1" target="body"&amp;gt;Table 2&amp;lt;/a&amp;gt;&lt;BR /&gt;
&lt;BR /&gt;
  Can you explain in a bit more detail what you are trying to accomplish?&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 01 Mar 2011 15:56:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15545#M3378</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-03-01T15:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to click on a preimage or postimage in a proc report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15546#M3379</link>
      <description>the goal is to link to an other stored process giving along the ID as a parameter&lt;BR /&gt;
&lt;BR /&gt;
so not to an anchor</description>
      <pubDate>Wed, 02 Mar 2011 07:01:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15546#M3379</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2011-03-02T07:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to click on a preimage or postimage in a proc report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15547#M3380</link>
      <description>Hi:&lt;BR /&gt;
  I have only seen stored processes use ANCHOR tags for URLS or HIDDEN form items for passing parameters (and only seen LINK tags used for CSS) --&lt;BR /&gt;
 &lt;BR /&gt;
  These may be of use to you:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/stpug/61271/HTML/default/viewer.htm#datapass.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/stpug/61271/HTML/default/viewer.htm#datapass.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/19/475.html" target="_blank"&gt;http://support.sas.com/kb/19/475.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  With stored processes, the general scenario is that something displays in the Portal on a web browser, such as an HTML form and the form action of the form is a link to SASStoredProcess/do? -- but in your case, you are trying to build the link from within PROC REPORT -- without knowing how THIS stored process will itself be invoked and under what configuration it is running, it is hard to comment.&lt;BR /&gt;
&lt;BR /&gt;
 I don't know how to code a direct call to a stored process via URL without using an &amp;lt;A&amp;gt; tag. Perhaps your best resource for this issue is to open a track with Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 02 Mar 2011 13:42:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15547#M3380</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-03-02T13:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to click on a preimage or postimage in a proc report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15548#M3381</link>
      <description>this is a piece of my code:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
compute Event_type;&lt;BR /&gt;
urlstring = "http://www.sas.com/" || compress(Facility) ||"";&lt;BR /&gt;
if event_type ne '' then&lt;BR /&gt;
	call define (_col_,'style','style=[preimage="http://www.stapleheadquarters.com/industrial-staplers/arrow-r.gif" PREHTML="&lt;A href="https://communities.sas.com/Test_&amp;amp;sel_lot" target="_blank"&gt;" POSTHTML="&lt;/A&gt;"]');&lt;BR /&gt;
if event_type ne '' then&lt;BR /&gt;
	CALL DEFINE(_COL_, 'URL', urlstring ); &lt;BR /&gt;
endcomp;&lt;BR /&gt;
&lt;BR /&gt;
what i can manage is make an urlstring of for example a STP-url (sas.com) and attach a variable (Facility). That link i can put behind each column item thanks to a call define. But that means there is text in my column, i don't want text, i want an image.&lt;BR /&gt;
&lt;BR /&gt;
Therefore i want to use PREHTML, POSTHML and PREIMAGE. It was no problem to make the link to &lt;A href="http://sas.com" target="_blank"&gt;http://sas.com&lt;/A&gt; but i couldn't concat the parameter/variable.&lt;BR /&gt;
&lt;BR /&gt;
I hope it is clearer now..</description>
      <pubDate>Wed, 02 Mar 2011 14:02:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15548#M3381</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2011-03-02T14:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to click on a preimage or postimage in a proc report.</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15549#M3382</link>
      <description>Hi:&lt;BR /&gt;
  I understand what you're trying to do. I am not sure that your approach is going to work. If you want to append something to URLSTRING variable, you will need to do it when you build the temporary variable.&lt;BR /&gt;
&lt;BR /&gt;
  Aside from that, a preimage has to "pre" something in the cell -- you don't need it to be text, but there has to be something in the cell -- even a space. Generally, I make it a one character variable like an "x" or a "-" and then I turn the background and foreground of the character the same color -- then the image looks like it is in the cell by itself.&lt;BR /&gt;
&lt;BR /&gt;
  I still think that your usage of PROC REPORT and stored processes and chaining URLS needs to be looked at in the WHOLE context of what you are doing and that you best bet for resolution is to open a track with Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 02 Mar 2011 15:57:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Is-it-possible-to-click-on-a-preimage-or-postimage-in-a-proc/m-p/15549#M3382</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-03-02T15:57:57Z</dc:date>
    </item>
  </channel>
</rss>

