<?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/"
		>
<channel>
	<title>Comments on: Generating PDFs from ADF Business Components View Object datasets using XSQL</title>
	<atom:link href="http://technology.amis.nl/2006/05/07/generating-pdfs-from-adf-business-components-view-object-datasets-using-xsql/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2006/05/07/generating-pdfs-from-adf-business-components-view-object-datasets-using-xsql/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=generating-pdfs-from-adf-business-components-view-object-datasets-using-xsql</link>
	<description></description>
	<lastBuildDate>Tue, 11 Jun 2013 22:09:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Krist</title>
		<link>http://technology.amis.nl/2006/05/07/generating-pdfs-from-adf-business-components-view-object-datasets-using-xsql/#comment-3221</link>
		<dc:creator>Krist</dc:creator>
		<pubDate>Thu, 22 Mar 2007 14:08:30 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1182#comment-3221</guid>
		<description><![CDATA[Hi Wouter,

I have tried this, it works great ! but then I have further requirement, to send the query result (Iterator) of an ADF Search Form to XSQL page. Is it possible ?

Thanks,
xtanto]]></description>
		<content:encoded><![CDATA[<p>Hi Wouter,</p>
<p>I have tried this, it works great ! but then I have further requirement, to send the query result (Iterator) of an ADF Search Form to XSQL page. Is it possible ?</p>
<p>Thanks,<br />
xtanto</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wouter van Reeven</title>
		<link>http://technology.amis.nl/2006/05/07/generating-pdfs-from-adf-business-components-view-object-datasets-using-xsql/#comment-3220</link>
		<dc:creator>Wouter van Reeven</dc:creator>
		<pubDate>Thu, 11 May 2006 09:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1182#comment-3220</guid>
		<description><![CDATA[Steve,


Many thanks for your comments. I see that you use the &quot;iterator&quot; property of the xsql:action tag to bind your xsql page to a View Object. Unfortunately, it appears that this property isn&#039;t documented in the JDeveloper online help. Would there be any other undocumented properties or even tags that we should know about?


Thanks, Wouter]]></description>
		<content:encoded><![CDATA[<p>Steve,</p>
<p>Many thanks for your comments. I see that you use the &#8220;iterator&#8221; property of the xsql:action tag to bind your xsql page to a View Object. Unfortunately, it appears that this property isn&#8217;t documented in the JDeveloper online help. Would there be any other undocumented properties or even tags that we should know about?</p>
<p>Thanks, Wouter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Muench</title>
		<link>http://technology.amis.nl/2006/05/07/generating-pdfs-from-adf-business-components-view-object-datasets-using-xsql/#comment-3219</link>
		<dc:creator>Steve Muench</dc:creator>
		<pubDate>Thu, 11 May 2006 02:06:46 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1182#comment-3219</guid>
		<description><![CDATA[ADF ships with built-in support for using ADF BC in XSQL Pages.
You can also check out the ADF Toy Store Demo for an example of a version of the integration that is updated for ADF binding layer.]]></description>
		<content:encoded><![CDATA[<p>ADF ships with built-in support for using ADF BC in XSQL Pages.<br />
You can also check out the ADF Toy Store Demo for an example of a version of the integration that is updated for ADF binding layer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wouter van Reeven</title>
		<link>http://technology.amis.nl/2006/05/07/generating-pdfs-from-adf-business-components-view-object-datasets-using-xsql/#comment-3218</link>
		<dc:creator>Wouter van Reeven</dc:creator>
		<pubDate>Tue, 09 May 2006 10:02:07 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1182#comment-3218</guid>
		<description><![CDATA[Martijn,


De &quot;xsql:action&quot; tag may contain the subtag &quot;where&quot; like this

&lt;where&gt;
  &lt;attribute name=&quot;id&quot; value=&quot;{@id}&quot;/&gt;
&lt;/where&gt;

Also, the &quot;value&quot; for the name attribute of the attribute tag may be bound to a request param in the same way as the &quot;value&quot; of the value attribute is.
Unfortunately, as far as I can tell only &quot;equals&quot; where clauses can be set up like this. Something like &quot;where id &gt; {@id}&quot; appears to be impossible. The only way to do this would be to use the &quot;xsql:query&quot; tag.


Wouter]]></description>
		<content:encoded><![CDATA[<p>Martijn,</p>
<p>De &#8220;xsql:action&#8221; tag may contain the subtag &#8220;where&#8221; like this</p>
<p>&lt;where&gt;<br />
  &lt;attribute name=&#8221;id&#8221; value=&#8221;{@id}&#8221;/&gt;<br />
&lt;/where&gt;</p>
<p>Also, the &#8220;value&#8221; for the name attribute of the attribute tag may be bound to a request param in the same way as the &#8220;value&#8221; of the value attribute is.<br />
Unfortunately, as far as I can tell only &#8220;equals&#8221; where clauses can be set up like this. Something like &#8220;where id &gt; {@id}&#8221; appears to be impossible. The only way to do this would be to use the &#8220;xsql:query&#8221; tag.</p>
<p>Wouter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martijn Peters</title>
		<link>http://technology.amis.nl/2006/05/07/generating-pdfs-from-adf-business-components-view-object-datasets-using-xsql/#comment-3217</link>
		<dc:creator>Martijn Peters</dc:creator>
		<pubDate>Mon, 08 May 2006 22:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1182#comment-3217</guid>
		<description><![CDATA[Sorry, the tag identifier was lost. I referred to the xsql:action tag.

Martijn]]></description>
		<content:encoded><![CDATA[<p>Sorry, the tag identifier was lost. I referred to the xsql:action tag.</p>
<p>Martijn</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martijn Peters</title>
		<link>http://technology.amis.nl/2006/05/07/generating-pdfs-from-adf-business-components-view-object-datasets-using-xsql/#comment-3216</link>
		<dc:creator>Martijn Peters</dc:creator>
		<pubDate>Mon, 08 May 2006 22:38:14 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1182#comment-3216</guid>
		<description><![CDATA[Wouter,

Does the  tag also supports parameter bindings. This is an essential requirement for user specified reports.

Martijn]]></description>
		<content:encoded><![CDATA[<p>Wouter,</p>
<p>Does the  tag also supports parameter bindings. This is an essential requirement for user specified reports.</p>
<p>Martijn</p>
]]></content:encoded>
	</item>
</channel>
</rss>
