<?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/"
	>

<channel>
	<title>SAP Netweaver Business Intelligence BI / BW &#187; red hat enterprise</title>
	<atom:link href="http://www.bw2048.com/bw/red-hat-enterprise/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bw2048.com</link>
	<description></description>
	<lastBuildDate>Sat, 28 Nov 2009 03:36:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>BusinessObjects Enterprise XI R2 BIPlatform Web Services &#8211; How do you Determine If a Parameter is Used in a Crystal Report?</title>
		<link>http://www.bw2048.com/businessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm</link>
		<comments>http://www.bw2048.com/businessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm#comments</comments>
		<pubDate>Wed, 17 Jun 2009 12:31:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[businessobjects]]></category>
		<category><![CDATA[businessobjects xi]]></category>
		<category><![CDATA[determ]]></category>
		<category><![CDATA[red hat enterprise]]></category>

		<guid isPermaLink="false">http://www.bw2048.com/businessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm</guid>
		<description><![CDATA[Symptom
BusinessObjects Enterprise XI Release 2 BIPlatform Web Services Java Consumer ApplicationSchedule a Crystal Report with ParametersThe crystalReport.getPluginProcessingInterface().getReportParameters().getParameters() returns all parameter fields in the report, whether they are used or not.How do you determine whether a parameter is being used in the report?
Resolution
Look in the ReportParameterOptions collection to see if ReportParameterOptionEnum.IS_NOT_USED is present.?If it is present, [...]


Related:<ol><li><a href='http://www.bw2048.com/should-the-clustername-be-used-when-logging-on-using-businessobjects-enterprise-xi-release-2-java-sdk-30.htm' rel='bookmark' title='Permanent Link: Should the @Clustername be Used When Logging On using BusinessObjects Enterprise XI Release 2 Java SDK?'>Should the @Clustername be Used When Logging On using BusinessObjects Enterprise XI Release 2 Java SDK?</a><small>Symptom Logon using the CMS cluster name (@clustername) fails with...</small></li><li><a href='http://www.bw2048.com/how-to-run-the-businessobjects-servers-on-domain-account-36.htm' rel='bookmark' title='Permanent Link: How to run the BusinessObjects servers on domain account?'>How to run the BusinessObjects servers on domain account?</a><small>Symptom BusinessObjects Enterprise (BOE) services run under the &#8216;localsystem&#8217; account...</small></li><li><a href='http://www.bw2048.com/how-to-configure-xi-3-1-query-builder-tool-to-communicate-to-businessobjects-enterprise-using-ssl-42.htm' rel='bookmark' title='Permanent Link: How to configure XI 3.1 Query Builder tool to communicate to BusinessObjects Enterprise using SSL?'>How to configure XI 3.1 Query Builder tool to communicate to BusinessObjects Enterprise using SSL?</a><small>Symptom BusinessObjects Enterprise XI 3.1 servers configured to use SSL...</small></li><li><a href='http://www.bw2048.com/how-to-hide-the-information-ondemand-iconlink-in-businessobjects-xi-release-2-service-pack-3-infoview-on-websphere-50.htm' rel='bookmark' title='Permanent Link: How to hide the Information OnDemand icon/link in BusinessObjects XI Release 2 Service Pack 3 InfoView on WebSphere'>How to hide the Information OnDemand icon/link in BusinessObjects XI Release 2 Service Pack 3 InfoView on WebSphere</a><small>Symptom How to hide theInformation OnDemandicon/link in BusinessObjects XI Release...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Symptom<br />
BusinessObjects Enterprise XI Release 2 BIPlatform Web Services Java Consumer ApplicationSchedule a Crystal Report with ParametersThe crystalReport.getPluginProcessingInterface().getReportParameters().getParameters() returns all parameter fields in the report, whether they are used or not.How do you determine whether a parameter is being used in the report?<br />
Resolution<br />
Look in the ReportParameterOptions collection to see if ReportParameterOptionEnum.IS_NOT_USED is present.?If it is present, then the parameter is not used in the report.?Sample code:<br />
　?CrystalReport report = (CrystalReport) infoObjects.getInfoObject(0);　?ReportParameter[] params = report.getPluginProcessingInterface().getReportParameters().getParameters();　?for(int i = 0, m = params.length ; i &lt; m ; i++) {<br />
　　　?ReportParameter parameter = params[i];<br />
　　　?ReportParameterOptions reportParameterOptions = parameter.getReportParameterOptions();<br />
　　　?boolean is_used = true;<br />
　　　?if(reportParameterOptions != null) {<br />
　　　　　?ReportParameterOptionEnum[] options = reportParameterOptions.getReportParameterOption();<br />
　　　　　?for(int j = 0, n = options.length ; j &lt; n ; j++) {<br />
　　　　　　　?if(ReportParameterOptionEnum.IS_NOT_USED.equals(options[j])) {<br />
　　　　　　　　　?is_used = false;<br />
　　　　　　　　　?break;<br />
　　　　　　　?}<br />
　　　　　?}<br />
　　　?}<br />
　　　?out.println(&quot;Is Used: &quot; + is_used +&quot;&lt;BR&gt;&quot;);<br />
　　　?out.println(&quot;&lt;BR&gt;&quot;);<br />
　?}</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.bw2048.com%2Fbusinessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm&amp;title=BusinessObjects+Enterprise+XI+R2+BIPlatform+Web+Services+%26%238211%3B+How+do+you+Determine+If+a+Parameter+is+Used+in+a+Crystal+Report%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.bw2048.com%2Fbusinessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm&amp;title=BusinessObjects+Enterprise+XI+R2+BIPlatform+Web+Services+%26%238211%3B+How+do+you+Determine+If+a+Parameter+is+Used+in+a+Crystal+Report%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.bw2048.com%2Fbusinessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm&amp;title=BusinessObjects+Enterprise+XI+R2+BIPlatform+Web+Services+%26%238211%3B+How+do+you+Determine+If+a+Parameter+is+Used+in+a+Crystal+Report%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.bw2048.com%2Fbusinessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm&amp;title=BusinessObjects+Enterprise+XI+R2+BIPlatform+Web+Services+%26%238211%3B+How+do+you+Determine+If+a+Parameter+is+Used+in+a+Crystal+Report%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.bw2048.com%2Fbusinessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm&amp;title=BusinessObjects+Enterprise+XI+R2+BIPlatform+Web+Services+%26%238211%3B+How+do+you+Determine+If+a+Parameter+is+Used+in+a+Crystal+Report%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.bw2048.com%2Fbusinessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.bw2048.com%2Fbusinessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.bw2048.com%2Fbusinessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm&amp;title=BusinessObjects+Enterprise+XI+R2+BIPlatform+Web+Services+%26%238211%3B+How+do+you+Determine+If+a+Parameter+is+Used+in+a+Crystal+Report%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.bw2048.com%2Fbusinessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm&amp;title=BusinessObjects+Enterprise+XI+R2+BIPlatform+Web+Services+%26%238211%3B+How+do+you+Determine+If+a+Parameter+is+Used+in+a+Crystal+Report%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>

<p>Related:<ol><li><a href='http://www.bw2048.com/should-the-clustername-be-used-when-logging-on-using-businessobjects-enterprise-xi-release-2-java-sdk-30.htm' rel='bookmark' title='Permanent Link: Should the @Clustername be Used When Logging On using BusinessObjects Enterprise XI Release 2 Java SDK?'>Should the @Clustername be Used When Logging On using BusinessObjects Enterprise XI Release 2 Java SDK?</a><small>Symptom Logon using the CMS cluster name (@clustername) fails with...</small></li><li><a href='http://www.bw2048.com/how-to-run-the-businessobjects-servers-on-domain-account-36.htm' rel='bookmark' title='Permanent Link: How to run the BusinessObjects servers on domain account?'>How to run the BusinessObjects servers on domain account?</a><small>Symptom BusinessObjects Enterprise (BOE) services run under the &#8216;localsystem&#8217; account...</small></li><li><a href='http://www.bw2048.com/how-to-configure-xi-3-1-query-builder-tool-to-communicate-to-businessobjects-enterprise-using-ssl-42.htm' rel='bookmark' title='Permanent Link: How to configure XI 3.1 Query Builder tool to communicate to BusinessObjects Enterprise using SSL?'>How to configure XI 3.1 Query Builder tool to communicate to BusinessObjects Enterprise using SSL?</a><small>Symptom BusinessObjects Enterprise XI 3.1 servers configured to use SSL...</small></li><li><a href='http://www.bw2048.com/how-to-hide-the-information-ondemand-iconlink-in-businessobjects-xi-release-2-service-pack-3-infoview-on-websphere-50.htm' rel='bookmark' title='Permanent Link: How to hide the Information OnDemand icon/link in BusinessObjects XI Release 2 Service Pack 3 InfoView on WebSphere'>How to hide the Information OnDemand icon/link in BusinessObjects XI Release 2 Service Pack 3 InfoView on WebSphere</a><small>Symptom How to hide theInformation OnDemandicon/link in BusinessObjects XI Release...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bw2048.com/businessobjects-enterprise-xi-r2-biplatform-web-services-how-do-you-determine-if-a-parameter-is-used-in-a-crystal-report-12.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
