<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>RSinteract Development Blog &#187; Features</title>
	<atom:link href="http://rsinteract.wordpress.com/category/rsinteract/features/feed/" rel="self" type="application/rss+xml" />
	<link>http://rsinteract.wordpress.com</link>
	<description>Extending SQL Server Reporting Services to end-users</description>
	<lastBuildDate>Fri, 27 Jan 2012 18:31:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rsinteract.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>RSinteract Development Blog &#187; Features</title>
		<link>http://rsinteract.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rsinteract.wordpress.com/osd.xml" title="RSinteract Development Blog" />
	<atom:link rel='hub' href='http://rsinteract.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Passing parameters to a report</title>
		<link>http://rsinteract.wordpress.com/2011/02/08/passing-parameters-to-a-report/</link>
		<comments>http://rsinteract.wordpress.com/2011/02/08/passing-parameters-to-a-report/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 11:24:06 +0000</pubDate>
		<dc:creator>James Morris</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[RSinteract]]></category>
		<category><![CDATA[parameters]]></category>

		<guid isPermaLink="false">https://rsinteract.wordpress.com/?p=353</guid>
		<description><![CDATA[Lately we’re getting more and more interest from multitenancy SaaS providers and OEM partners who want to integrate RSinteract into their web applications. A really useful feature of RSinteract is the ability to link to a report from a 3rd party application and pass filter values and UI parameters on the URL. To do this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rsinteract.wordpress.com&amp;blog=19131658&amp;post=353&amp;subd=rsinteract&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lately we’re getting more and more interest from <a href="http://rsinteract.wordpress.com/2010/11/22/rsinteract-imminent-release/">multitenancy SaaS</a> providers and OEM partners who want to integrate <a href="http://www.rsinteract.com/" target="_blank">RSinteract</a> into their web applications. A really useful feature of RSinteract is the ability to link to a report from a 3<sup>rd</sup> party application and pass filter values and UI parameters on the URL.</p>
<p>To do this with a report based on a SQL Server or Oracle data source:</p>
<ul>
<li>Create a report with filters, or use this sample report which comes with RSinteract: <a href="http://localhost/RSinteract/?/RSinteract+Samples%2fOrders+by+Category" target="_blank">http://localhost/RSinteract/?/RSinteract+Samples%2fOrders+by+Category</a> </li>
<li>Open the report and hover over the parameter in the left hand sidebar </li>
<li>Note the <i>RDL field</i>: Fullname </li>
<li>Add the parameter name and value to the URL:
<ul>
<li><a href="http://localhost/RSinteract/?/RSinteract+Samples%2fOrders+by+Category&amp;Fullname=Pak,%20Jae" target="_blank">http://localhost/RSinteract/?/RSinteract+Samples%2fOrders+by+Category&amp;Fullname=Pak,%20Jae</a> </li>
<li>Separate the parameters with &amp; </li>
<li>Replace any spaces with %20 </li>
<li>Parameter names are case-sensitive </li>
</ul>
</li>
<li>For <i>Between</i> filters you actually have two parameters: add _0 and _1 to the <i>RDL field</i>:
<ul>
<li><a href="http://localhost/RSinteract/?/RSinteract+Samples%2fOrders+by+Category&amp;OrderDate_0=1%20Jan%202003&amp;OrderDate_1=31%20Dec%202003" target="_blank">&#8230;Orders+by+Category&amp;OrderDate_0=1%20Jan%202003&amp;OrderDate_1=31%20Dec%202003</a> </li>
</ul>
</li>
</ul>
<p>For a report based on an Analysis Services OLAP data source:</p>
<ul>
<li>Create a report with filters, or use this sample report which comes with RSinteract: <a href="http://localhost/RSinteract/?/RSinteract+Samples%2fSales+by+Country+(OLAP)" target="_blank">http://localhost/RSinteract/?/RSinteract+Samples%2fSales+by+Country+(OLAP)</a> </li>
<li>Open the report and hover over the parameter in the left hand sidebar </li>
<li>Note the <i>RDL field</i>: Date_Fiscal </li>
<li>Hold ctrl and double click on the empty bit of sidebar below the Filters panel, click OK to hide the popup message and you’ll see the Reporting Services toolbar at the top of your report </li>
<li>Note the parameter value {[Date].[Fiscal].[Fiscal Year].&amp;[2004]}
<ul>
<li>Remove the braces { } </li>
<li>Change ampersands to %26 </li>
<li>Change [ to %5b </li>
<li>Change ] to %5d </li>
<li>Separate the parameters with &amp; </li>
<li>Replace any spaces with %20 </li>
<li>Parameter names are case-sensitive </li>
</ul>
</li>
<li>Put your new URL together by adding: &amp;Date_Fiscal=%5bDate%5d.%5bFiscal%5d.%5bFiscal%20Year%5d.%26%5b2003%5d </li>
<li>Try your new URL <a href="http://localhost/RSinteract/?/RSinteract+Samples%2fSales+by+Country+(OLAP)&amp;Date_Fiscal=%5bDate%5d.%5bFiscal%5d.%5bFiscal%20Year%5d.%26%5b2003%5d" target="_blank">&#8230;Sales+by+Country+(OLAP)&amp;Date_Fiscal=%5bDate%5d.%5bFiscal%5d.%5bFiscal%20Year%5d.%26%5b2003%5d</a> </li>
</ul>
<p>Notes:</p>
<ul>
<li>Any errors in the report frame are probably due to invalid parameters &#8211; if you’re not sure about your parameter values then paste them directly into the Reporting Services toolbar and hit the “View Report” button </li>
<li>You don’t need to pass all of a report’s filter parameters on the URL, those not passed will use the normal report defaults. </li>
<li>If your Filters tab has the ‘Always Ask’ option ticked you’ll need to add “&amp;rsi:noq=1” to the URL to tell RSinteract not to show the question screen. </li>
<li>The rsi:noq=1 option only works if all parameters in the report have a default value or a value is passed on the URL. </li>
<li>Make sure you keep everything case sensitive. </li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rsinteract.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rsinteract.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rsinteract.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rsinteract.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rsinteract.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rsinteract.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rsinteract.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rsinteract.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rsinteract.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rsinteract.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rsinteract.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rsinteract.wordpress.com/353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rsinteract.wordpress.com/353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rsinteract.wordpress.com/353/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rsinteract.wordpress.com&amp;blog=19131658&amp;post=353&amp;subd=rsinteract&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rsinteract.wordpress.com/2011/02/08/passing-parameters-to-a-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cb6b4c32cb61c9b0d3885826ed22df6a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jamesmorrisbd</media:title>
		</media:content>
	</item>
		<item>
		<title>RSinteract Imminent Release</title>
		<link>http://rsinteract.wordpress.com/2010/11/22/rsinteract-imminent-release/</link>
		<comments>http://rsinteract.wordpress.com/2010/11/22/rsinteract-imminent-release/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 15:32:37 +0000</pubDate>
		<dc:creator>James Morris</dc:creator>
				<category><![CDATA[Data Sources]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[RSinteract]]></category>
		<category><![CDATA[Multitenancy]]></category>
		<category><![CDATA[Oracle data sources]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>

		<guid isPermaLink="false">http://rsinteract.electricbiro.co.uk/?p=212</guid>
		<description><![CDATA[We&#8217;ve been really busy over the last year adding new features and working with our partners to integrate RSinteract with their web applications. The result is currently a beta release available for download here. New features include: Multitenancy support through custom data and security extensions Support for SQL Server 2008 R2 and Windows 7 Intelligent [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rsinteract.wordpress.com&amp;blog=19131658&amp;post=212&amp;subd=rsinteract&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been really busy over the last year adding new features and working with our partners to integrate RSinteract with their web applications. The result is currently a beta release available for <a href="http://www.rsinteract.com/download/eval.html" target="_blank">download here</a>. New features include:</p>
<ul>
<li>Multitenancy support through custom data and security extensions</li>
<li>Support for SQL Server 2008 R2 and Windows 7</li>
<li>Intelligent data discovery and cleansing of table and field names</li>
<li>Blank value matching in filters and conditional formatting</li>
<li>Ability to add links and drill-through to charts and indicators</li>
<li>Improved date search and caching for OLAP data sources</li>
<li>Improved editing of field width and font formatting</li>
</ul>
<p>In the next few months we’ll be working on support for Oracle data sources; a configurable meta layer for field names, formatting and joining; and dynamic filters such as <em>this week</em> and <em>year to date</em>. Watch this space&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rsinteract.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rsinteract.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rsinteract.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rsinteract.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rsinteract.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rsinteract.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rsinteract.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rsinteract.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rsinteract.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rsinteract.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rsinteract.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rsinteract.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rsinteract.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rsinteract.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rsinteract.wordpress.com&amp;blog=19131658&amp;post=212&amp;subd=rsinteract&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rsinteract.wordpress.com/2010/11/22/rsinteract-imminent-release/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cb6b4c32cb61c9b0d3885826ed22df6a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jamesmorrisbd</media:title>
		</media:content>
	</item>
		<item>
		<title>Indicators Demo</title>
		<link>http://rsinteract.wordpress.com/2009/01/19/indicators-demo/</link>
		<comments>http://rsinteract.wordpress.com/2009/01/19/indicators-demo/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 14:45:28 +0000</pubDate>
		<dc:creator>RSinteract</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[RSinteract]]></category>
		<category><![CDATA[business intelligence]]></category>
		<category><![CDATA[dashboarding]]></category>
		<category><![CDATA[indicators]]></category>
		<category><![CDATA[kpi]]></category>
		<category><![CDATA[scorecarding]]></category>
		<category><![CDATA[showcase]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://rsinteract.electricbiro.co.uk/?p=58</guid>
		<description><![CDATA[Here’s a quick demo of the new indicators feature. It’s a pretty trivial one but shows the potential. http://images.video.msn.com/flash/soapbox1_1.swf<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rsinteract.wordpress.com&amp;blog=19131658&amp;post=58&amp;subd=rsinteract&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here’s a quick demo of the new indicators feature. It’s a pretty trivial one but shows the potential.</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:08d46287-c9cb-4c73-9d4a-aefd9068801e" class="wlWriterEditableSmartContent" style="display:inline;float:none;margin:0;padding:0;">
<div><a href="http://images.video.msn.com/flash/soapbox1_1.swf">http://images.video.msn.com/flash/soapbox1_1.swf</a></div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rsinteract.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rsinteract.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rsinteract.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rsinteract.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rsinteract.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rsinteract.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rsinteract.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rsinteract.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rsinteract.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rsinteract.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rsinteract.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rsinteract.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rsinteract.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rsinteract.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rsinteract.wordpress.com&amp;blog=19131658&amp;post=58&amp;subd=rsinteract&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rsinteract.wordpress.com/2009/01/19/indicators-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/812269b1933cf80f651b40754de96551?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rsinteract</media:title>
		</media:content>
	</item>
		<item>
		<title>Sneak Preview</title>
		<link>http://rsinteract.wordpress.com/2009/01/05/sneak-preview/</link>
		<comments>http://rsinteract.wordpress.com/2009/01/05/sneak-preview/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 09:30:53 +0000</pubDate>
		<dc:creator>RSinteract</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[RSinteract]]></category>

		<guid isPermaLink="false">http://rsinteract.electricbiro.co.uk/?p=24</guid>
		<description><![CDATA[Here’s a sneak preview of the new look and feel and some of the new features included in the upcoming major release of RSinteract. New formatting options including: Font, Font Size, Font Style Instant formatting options from the field selection screen New conditional formatting options as above and more! Indicator images in the report for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rsinteract.wordpress.com&amp;blog=19131658&amp;post=24&amp;subd=rsinteract&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here’s a sneak preview of the new look and feel and some of the new features included in the upcoming major release of <a href="http://www.rsinteract.com/">RSinteract</a>.</p>
<p><a href="http://rsinteract.files.wordpress.com/2009/01/rsinteract-look-and-feel11.png"><img style="display:inline;border:0;" title="rsinteract_look_and_feel" src="http://rsinteract.files.wordpress.com/2009/01/rsinteract-look-and-feel-thumb11.png?w=244&#038;h=183" border="0" alt="rsinteract_look_and_feel" width="244" height="183" /></a></p>
<ul>
<li>New formatting options including: Font, Font Size, Font Style</li>
<li>Instant formatting options from the field selection screen</li>
<li>New conditional formatting options as above and more!</li>
<li>Indicator images in the report for creating simple instant dashboards.</li>
<li>Selectable Join types for joining tables from the front end</li>
<li>Join tables direct from the edit section screen, allowing the addition of data to existing SQL reports.</li>
<li>Support for SQL Server 2008</li>
<li>Improved field selection in the new report wizard</li>
<li>New tree structure for creating SQL reports making it even faster and easier to find the data you want.</li>
<li>New tree structure in the SQL filter screen drop downs to allow quicker selection of filter field</li>
<li>Updated Look and Feel</li>
<li>Beta of Windows SharePoint Services support</li>
<li>Improved Custom Fields Editor</li>
<li>Report Branding support</li>
<li>The much missed previous button is back (excuse the pun)!</li>
<li>Plus lots and lots of bug fixes!</li>
</ul>
<p>Let us know if you like it or not by commenting!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rsinteract.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rsinteract.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rsinteract.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rsinteract.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rsinteract.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rsinteract.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rsinteract.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rsinteract.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rsinteract.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rsinteract.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rsinteract.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rsinteract.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rsinteract.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rsinteract.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rsinteract.wordpress.com&amp;blog=19131658&amp;post=24&amp;subd=rsinteract&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rsinteract.wordpress.com/2009/01/05/sneak-preview/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/812269b1933cf80f651b40754de96551?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rsinteract</media:title>
		</media:content>

		<media:content url="http://rsinteract.files.wordpress.com/2009/01/rsinteract-look-and-feel-thumb11.png" medium="image">
			<media:title type="html">rsinteract_look_and_feel</media:title>
		</media:content>
	</item>
	</channel>
</rss>
