<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Outputing ALL images from PS</title>
	<atom:link href="http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/feed/" rel="self" type="application/rss+xml" />
	<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/</link>
	<description>A PeopleSoft Tips and Tricks Blog</description>
	<lastBuildDate>Wed, 14 Dec 2011 14:35:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Prashant</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1741</link>
		<dc:creator><![CDATA[Prashant]]></dc:creator>
		<pubDate>Mon, 17 Oct 2011 10:11:10 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1741</guid>
		<description><![CDATA[Hi Duncan,

Really nice to see this!!!

Request if you could share some details around the page modifications that you have done based on size.

Thank You!

Cheers
Prashant]]></description>
		<content:encoded><![CDATA[<p>Hi Duncan,</p>
<p>Really nice to see this!!!</p>
<p>Request if you could share some details around the page modifications that you have done based on size.</p>
<p>Thank You!</p>
<p>Cheers<br />
Prashant</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tipster</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1665</link>
		<dc:creator><![CDATA[Tipster]]></dc:creator>
		<pubDate>Sun, 07 Aug 2011 18:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1665</guid>
		<description><![CDATA[Interesting, and thanks for sharing it.

I&#039;ve actually taken this in the opposite direction and turned it into more of a page :-)

I&#039;ve now added some fields to filter the results to reduce the amount of data transfer required.  I&#039;ve grouped them by small/medium/large and navigation collection (32x32).]]></description>
		<content:encoded><![CDATA[<p>Interesting, and thanks for sharing it.</p>
<p>I&#8217;ve actually taken this in the opposite direction and turned it into more of a page <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I&#8217;ve now added some fields to filter the results to reduce the amount of data transfer required.  I&#8217;ve grouped them by small/medium/large and navigation collection (32&#215;32).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil Yetman</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1664</link>
		<dc:creator><![CDATA[Neil Yetman]]></dc:creator>
		<pubDate>Wed, 03 Aug 2011 14:33:56 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1664</guid>
		<description><![CDATA[Hi Duncan, I thought I would show you how I have updated the code in your post to turn it into an IScript. The benefit is it is much quicker to create. There is no need to create a component and page. I&#039;ve even taken the SQL and put it directly into the PeopleCode so you can lose the SQL Definition. For me I created a WEBLIB_NY record, with one field (ISCRIPT) and copied the function below into the FieldFormula PeopleCode. Then the URL to get to it is http://some.web.server/psp/DB_NAME/EMPLOYEE/HRMS/s/WEBLIB_NY.ISCRIPT1.FieldFormula.IScript_Images. 

Note: Depending on the roles your User ID is assigned, you may need to add this IScript to a permission list in order to access it.

Function IScript_Images
   Local SQL &amp;SQLGetImages;
   Local string &amp;ImageHTML, &amp;ImageName;
   
   &amp;SQLGetImages = CreateSQL(&quot;SELECT CONTNAME FROM PSCONTDEFN C WHERE C.ALTCONTNUM = (SELECT MAX(C1.ALTCONTNUM) FROM PSCONTDEFN C1 WHERE C1.CONTNAME = C.CONTNAME AND C1.CONTFMT  &#039; &#039;) AND C.CONTFMT = ( SELECT MAX(C1.CONTFMT) FROM PSCONTDEFN C1 WHERE C1.CONTNAME = C.CONTNAME AND C1.ALTCONTNUM = C.ALTCONTNUM AND C1.CONTFMT  &#039; &#039;)&quot;);
   While &amp;SQLGetImages.Fetch(&amp;ImageName)
      %Response.WriteLine(&quot; &quot; &#124; &amp;ImageName &#124; &quot;&quot;);
   End-While;
   &amp;SQLGetImages.Close();

End-Function;]]></description>
		<content:encoded><![CDATA[<p>Hi Duncan, I thought I would show you how I have updated the code in your post to turn it into an IScript. The benefit is it is much quicker to create. There is no need to create a component and page. I&#8217;ve even taken the SQL and put it directly into the PeopleCode so you can lose the SQL Definition. For me I created a WEBLIB_NY record, with one field (ISCRIPT) and copied the function below into the FieldFormula PeopleCode. Then the URL to get to it is <a href="http://some.web.server/psp/DB_NAME/EMPLOYEE/HRMS/s/WEBLIB_NY.ISCRIPT1.FieldFormula.IScript_Images" rel="nofollow">http://some.web.server/psp/DB_NAME/EMPLOYEE/HRMS/s/WEBLIB_NY.ISCRIPT1.FieldFormula.IScript_Images</a>. </p>
<p>Note: Depending on the roles your User ID is assigned, you may need to add this IScript to a permission list in order to access it.</p>
<p>Function IScript_Images<br />
   Local SQL &amp;SQLGetImages;<br />
   Local string &amp;ImageHTML, &amp;ImageName;</p>
<p>   &amp;SQLGetImages = CreateSQL(&#8220;SELECT CONTNAME FROM PSCONTDEFN C WHERE C.ALTCONTNUM = (SELECT MAX(C1.ALTCONTNUM) FROM PSCONTDEFN C1 WHERE C1.CONTNAME = C.CONTNAME AND C1.CONTFMT  &#8216; &#8216;) AND C.CONTFMT = ( SELECT MAX(C1.CONTFMT) FROM PSCONTDEFN C1 WHERE C1.CONTNAME = C.CONTNAME AND C1.ALTCONTNUM = C.ALTCONTNUM AND C1.CONTFMT  &#8216; &#8216;)&#8221;);<br />
   While &amp;SQLGetImages.Fetch(&amp;ImageName)<br />
      %Response.WriteLine(&#8221; &#8221; | &amp;ImageName | &#8220;&#8221;);<br />
   End-While;<br />
   &amp;SQLGetImages.Close();</p>
<p>End-Function;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1043</link>
		<dc:creator><![CDATA[Richard]]></dc:creator>
		<pubDate>Fri, 16 Oct 2009 08:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1043</guid>
		<description><![CDATA[Thanks. Our team has found this a very useful development tool for searching for an appropriate image, and I have just made this a permanent component in our development environment.]]></description>
		<content:encoded><![CDATA[<p>Thanks. Our team has found this a very useful development tool for searching for an appropriate image, and I have just made this a permanent component in our development environment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1023</link>
		<dc:creator><![CDATA[Ryan]]></dc:creator>
		<pubDate>Fri, 18 Sep 2009 20:37:25 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-1023</guid>
		<description><![CDATA[Glad I found your page, I was trying to see what images PS provides. Thanks so much]]></description>
		<content:encoded><![CDATA[<p>Glad I found your page, I was trying to see what images PS provides. Thanks so much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giri</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-874</link>
		<dc:creator><![CDATA[Giri]]></dc:creator>
		<pubDate>Wed, 24 Sep 2008 21:59:36 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-874</guid>
		<description><![CDATA[Good one!]]></description>
		<content:encoded><![CDATA[<p>Good one!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cool</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-736</link>
		<dc:creator><![CDATA[Cool]]></dc:creator>
		<pubDate>Tue, 01 Apr 2008 13:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-736</guid>
		<description><![CDATA[Very usefull tip!!!]]></description>
		<content:encoded><![CDATA[<p>Very usefull tip!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajay</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-549</link>
		<dc:creator><![CDATA[Ajay]]></dc:creator>
		<pubDate>Mon, 26 Nov 2007 16:22:21 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-549</guid>
		<description><![CDATA[excellent...]]></description>
		<content:encoded><![CDATA[<p>excellent&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alagiri Ruban</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-244</link>
		<dc:creator><![CDATA[Alagiri Ruban]]></dc:creator>
		<pubDate>Mon, 06 Aug 2007 11:26:37 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-244</guid>
		<description><![CDATA[This really a good tip]]></description>
		<content:encoded><![CDATA[<p>This really a good tip</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sachin</title>
		<link>http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-189</link>
		<dc:creator><![CDATA[Sachin]]></dc:creator>
		<pubDate>Wed, 18 Jul 2007 05:35:04 +0000</pubDate>
		<guid isPermaLink="false">http://peoplesofttipster.com/2007/07/12/outputing-all-images-from-ps/#comment-189</guid>
		<description><![CDATA[Great tip!]]></description>
		<content:encoded><![CDATA[<p>Great tip!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

