<?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>PerformancePoint &#8211; Prologika</title>
	<atom:link href="https://prologika.com/tag/performancepoint/feed/" rel="self" type="application/rss+xml" />
	<link>https://prologika.com</link>
	<description>Business Intelligence Consulting and Training in Atlanta</description>
	<lastBuildDate>Tue, 16 Feb 2021 09:28:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Integrating Power View with PerformancePoint</title>
		<link>https://prologika.com/integrating-power-view-with-performancepoint/</link>
					<comments>https://prologika.com/integrating-power-view-with-performancepoint/#respond</comments>
		
		<dc:creator><![CDATA[Prologika - Teo Lachev]]></dc:creator>
		<pubDate>Sun, 15 Sep 2013 01:45:00 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PerformancePoint]]></category>
		<category><![CDATA[Power View]]></category>
		<guid isPermaLink="false">/CS/blogs/blog/archive/2013/09/14/integrating-power-view-with-performancepoint.aspx</guid>

					<description><![CDATA[With the rising popularity of Power View, you may need to integrate it with PerformancePoint to jazz up your dashboards and make them more interactive. Take a look at the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>With the rising popularity of Power View, you may need to integrate it with PerformancePoint to jazz up your dashboards and make them more interactive. Take a look at the following, admittedly unpolished, dashboard which combines a PerformancePoint scorecard and Power View report.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-2003 size-full" src="/wp-content/uploads/2013/09/091513_0145_Integrating1.png" alt="091513_0145_Integrating1" width="572" height="723" srcset="https://prologika.com/wp-content/uploads/2013/09/091513_0145_Integrating1.png 572w, https://prologika.com/wp-content/uploads/2013/09/091513_0145_Integrating1-450x569.png 450w, https://prologika.com/wp-content/uploads/2013/09/091513_0145_Integrating1-237x300.png 237w, https://prologika.com/wp-content/uploads/2013/09/091513_0145_Integrating1-558x705.png 558w" sizes="(max-width: 572px) 100vw, 572px" /></p>
<p>What&#8217;s interesting is that the Power View report is synchronized with the dashboard filter. For example, when the user changes the filter to 2009, the Power View report filters on the same year. Starting with SQL Server 2012 SP1 CU4, Power View supports passing URL parameters using the syntax rf=[Table].[Field] eq Value. In this case I use the following Power View URL:</p>
<p><span style="font-family: Courier New; font-size: 10pt;">http://&lt;site&gt;/_layouts/15/ReportServer/AdHocReportDesigner.aspx?RelativeReportUrl=/PowerPivot Gallery/Adventure Works Dashboard.rdlx&amp;ViewMode=Presentation&amp;PreviewMode=True&amp;PreviewBar=False&amp;[Date].[Calendar Year] eq 2009 </span></p>
<p>As you would quickly discover, the Power View customization is rather basic. The only operator supported for now is the equal operator (eq) and multi-valued parameters are not supported. The PerformancePoint integration is achieved by using the Web Page report type. Because of the mechanics of how PerformancePoint passes a parameter to a web page report (it always appends the Endpoint_Url query string containing the filter value), you&#8217;ll need a wrapper ASP.NET or HTML page that extracts this parameter and constructs the correct Power View URL. I opted for an ASP.NET page. Due to the SharePoint limitation that ASP.NET pages cannot have code-behind files, the PowerViewWrapper.aspx page, which I added to the Pages folder, includes the server side code:</p>
<p><span style="font-family: Courier New; font-size: 10pt;">&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt; </span></p>
<p><span style="font-family: Courier New; font-size: 10pt;">&lt;script runat=&#8221;server&#8221;&gt; </span></p>
<p><span style="font-family: Courier New; font-size: 10pt;">protected void Page_Load(object sender, EventArgs e) </span><span style="font-family: Courier New; font-size: 10pt;">{ </span></p>
<p><span style="font-family: Courier New; font-size: 10pt;">System.Collections.Specialized.NameValueCollection nvc = HttpUtility.ParseQueryString(Request.Url.ToString()); </span></p>
<p><span style="font-family: Courier New; font-size: 10pt;">string filterValue = nvc[&#8220;Endpoint_URL&#8221;]; </span></p>
<p><span style="font-family: Courier New; font-size: 10pt;">if (filterValue == null) return; </span></p>
<p><span style="font-size: 10pt;"><span style="font-family: Courier New;">string pvUrl = String.Format(&#8220;http://elitevm1/bi/_layouts/15/ReportServer/AdHocReportDesigner.aspx?RelativeReportUrl=/bi/PowerPivot Gallery/Adventure Works Dashboard.rdlx&amp;ViewMode=Presentation&amp;PreviewMode=True&amp;PreviewBar=False&amp;rf=[Date].[Calendar Year] eq {0}&#8221;, filterValue.Remove(0, 3)); // </span>remove &#8220;FY &#8220;. </span></p>
<p><span style="font-family: Courier New; font-size: 10pt;">Response.Redirect(pvUrl); </span><span style="font-family: Courier New; font-size: 10pt;">} </span></p>
<p><span style="font-family: Courier New; font-size: 10pt;">&lt;/script&gt; </span></p>
<p><span style="font-family: Courier New;">… </span></p>
<p style="background: #f2f2f2;"><strong>Note</strong>: By default, SharePoint disallows custom code and the page will error out with &#8220;Code blocks are not allowed in this file&#8221;. To fix, this open C:\inetpub\wwwroot\wss\VirtualDirectories\80\web.config and change the PageParserPaths section as follows (allowing all pages with /* was the only way I was able to get the page to execute successfully:</p>
<p style="background: #f2f2f2;"><span style="color: blue; font-family: Consolas; font-size: 9pt;">&lt;<span style="color: #a31515;">PageParserPaths<span style="color: blue;">&gt;</span> </span></span></p>
<p style="background: #f2f2f2;"><span style="color: blue; font-family: Consolas; font-size: 9pt;">     &lt;<span style="color: #a31515;">PageParserPath<span style="color: blue;"> <span style="color: red;">VirtualPath<span style="color: blue;">=</span>&#8220;<span style="color: blue;">/*</span>&#8220;<span style="color: blue;"> <span style="color: red;">CompilationMode<span style="color: blue;">=</span>&#8220;<span style="color: blue;">Always</span>&#8220;<span style="color: blue;"> <span style="color: red;">AllowServerSideScript<span style="color: blue;">=</span>&#8220;<span style="color: blue;">true</span>&#8220;<span style="color: blue;"> <span style="color: red;">IncludeSubFolders<span style="color: blue;">=</span>&#8220;<span style="color: blue;">true</span>&#8220;<span style="color: blue;">/&gt;</span> </span></span></span></span></span></span></span></span></span></span></p>
<p style="background: #f2f2f2;"><span style="color: blue; font-family: Consolas; font-size: 9pt;">&lt;/<span style="color: #a31515;">PageParserPaths<span style="color: blue;">&gt; </span></span></span></p>
<p> The last part is to hook the Web Page report to the dashboard (no surprises here):</p>
<ol>
<li>In the PerformancePoint Designer, add a Web Page report with an URL pointing to the wrapper page, such as http://&lt;site&gt;/bi/Pages/PowerViewWrapper.aspx?Dummy=1 (the Dummy parameter was added so ParseQueryString could parse the query parameter in the wrapper page).</li>
<li>Add the report to the dashboard.</li>
<li>Drag the Display Value property of the filter and drop it onto the Web Page report zone.</li>
<li>
<div>In the Connection dialog box, click the Connection Formula button and configure it as follows:</div>
<p><img decoding="async" class="alignnone wp-image-2004 size-full" src="/wp-content/uploads/2013/09/091513_0145_Integrating2.png" alt="091513_0145_Integrating2" width="615" height="358" srcset="https://prologika.com/wp-content/uploads/2013/09/091513_0145_Integrating2.png 615w, https://prologika.com/wp-content/uploads/2013/09/091513_0145_Integrating2-450x262.png 450w, https://prologika.com/wp-content/uploads/2013/09/091513_0145_Integrating2-300x175.png 300w" sizes="(max-width: 615px) 100vw, 615px" /></li>
</ol>
<p>The &lt;&lt;SourceValue&gt;&gt; placeholder returns the filter value, which PerformancePoint passes to the wrapper page, which in turn calls the Power View report.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://prologika.com/integrating-power-view-with-performancepoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>PerformancePoint Display Condition Not Working</title>
		<link>https://prologika.com/performancepoint-display-condition-not-working/</link>
					<comments>https://prologika.com/performancepoint-display-condition-not-working/#respond</comments>
		
		<dc:creator><![CDATA[Prologika - Teo Lachev]]></dc:creator>
		<pubDate>Wed, 03 Jul 2013 12:54:00 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PerformancePoint]]></category>
		<guid isPermaLink="false">/CS/blogs/blog/archive/2013/07/03/performancepoint-display-condition-not-working.aspx</guid>

					<description><![CDATA[Issue: A client reports an issue with our PerformancePoint dashboard where the clicking a KPI in the scorecard doesn&#8217;t show the supporting analytical grid. Normally, when the user clicks a [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><span style="font-family: Times New Roman; font-size: 12pt;"><strong>Issue:</strong> A client reports an issue with our PerformancePoint dashboard where the clicking a KPI in the scorecard doesn&#8217;t show the supporting analytical grid. Normally, when the user clicks a row in the Operational Scorecard (see the image below), the SharePoint connectable architecture triggers an update of the Operational Detail Report Months analytical report that shows more details about the selected KPI. </span></p>
<p>&nbsp;</p>
<p><span style="font-family: Times New Roman; font-size: 12pt;"><strong>Workaround</strong>: Finding the cause was tricky. To make things even trickier, the SQL Server Profiler would show &#8220;<span style="color: red;">Query (1, 36) Parser: The syntax for &#8216;,&#8217; is incorrect.&#8221; </span>error so you would believe that there is something wrong with the MDX queries. This turned out to be an &#8220;innocent&#8221; error if there is such a thing. The reason for the issue with the report refresh not working was actually a PerformancePoint Display Condition bug presumably introduced by a recent SharePoint upgrade (more than likely the April CU). The display condition actually works if you put the page in Edit mode. While waiting for a fix from Microsoft, the workaround I found is to enable a default display condition: </span></p>
<ol>
<li>Open the dashboard in the Dashboard Designer.</li>
<li>In the Analytical Report web part, right-click the Display Condition and then Edit Condition.</li>
<li>Check the Default checkbox and redeploy the dashboard.</li>
</ol>
<p><img decoding="async" class="alignnone size-medium wp-image-2042" src="/wp-content/uploads/2013/07/070313_1254_Performance2-239x300.png" alt="070313_1254_Performance2" width="239" height="300" srcset="https://prologika.com/wp-content/uploads/2013/07/070313_1254_Performance2-239x300.png 239w, https://prologika.com/wp-content/uploads/2013/07/070313_1254_Performance2.png 308w" sizes="(max-width: 239px) 100vw, 239px" /></p>
<p><span style="font-family: Times New Roman; font-size: 12pt;">This displays the default configuration of the Analytical Grid report which the user will see when opening the dashboard page. For some reason, this makes the KPI row clicks work. Sometimes, things get worse before getting better… </span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://prologika.com/performancepoint-display-condition-not-working/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>PerformancePoint 2013 Dependencies for Analysis Services</title>
		<link>https://prologika.com/performancepoint-2013-dependencies-for-analysis-services/</link>
					<comments>https://prologika.com/performancepoint-2013-dependencies-for-analysis-services/#respond</comments>
		
		<dc:creator><![CDATA[Prologika - Teo Lachev]]></dc:creator>
		<pubDate>Mon, 04 Feb 2013 03:10:00 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PerformancePoint]]></category>
		<guid isPermaLink="false">/CS/blogs/blog/archive/2013/02/03/performancepoint-2013-dependencies-for-analysis-services.aspx</guid>

					<description><![CDATA[Besides the usual hassle configuring PerformancePoint, including insufficient permissions to databases and service accounts, version 2013 requires the SQL Server 2008 R2 drivers. This is surprising considering that SharePoint 2013 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Besides the usual hassle configuring PerformancePoint, including insufficient permissions to databases and service accounts, version 2013 requires the SQL Server 2008 R2 drivers. This is surprising considering that SharePoint 2013 shipped after SQL Server 2012.</p>
<p>In a previous <a href="/CS/blogs/blog/archive/2013/02/03/the-sharepoint-2013-business-intelligence-center.aspx">blog</a>, I explained how to configure the SharePoint 2013 BI Center. When you go to any of the PerformancePoint-related links, such as Dashboards or PerformancePoint Content, you&#8217;ll see the following ribbon.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-2126" src="/wp-content/uploads/2013/02/5076.ppt20ribbon.png-550x0-300x156.png" alt="5076.ppt%20ribbon.png-550x0" width="300" height="156" srcset="https://prologika.com/wp-content/uploads/2013/02/5076.ppt20ribbon.png-550x0-300x156.png 300w, https://prologika.com/wp-content/uploads/2013/02/5076.ppt20ribbon.png-550x0-450x234.png 450w, https://prologika.com/wp-content/uploads/2013/02/5076.ppt20ribbon.png-550x0.png 549w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>The Dashboard Designer button is the new way to launch the PerformancePoint Designer. However, when you attempt to configure a data source pointing to Analysis Services, you will likely get an error. The first stop for troubleshooting SharePoint and PerformancePoint issues is of course the Windows Event Log. If you examine the Windows Event Log, you&#8217;ll see that PerformancePoint fails to load the 10.0 version of Microsoft.AnalysisServices.AdomdClient. This is the version that&#8217;s included in SQL Server 2008 R2. This sends you to the SQL Server 2008 R2 Feature Pack page, from where you can download and install the Microsoft SQL Server 2008 R2 ADOMD.NET library. Now, you can connect to Analysis Services.</p>
<p>The next trip to the SQL Server 2008 R2 Feature Pack page will happen when you try to import (not create) KPIs defined in an Analysis Services cube. This time the error in the Event Log indicates that PerformancePoint requires the 10.0 version of the Microsoft.AnalysisServices dll, which represents the Analysis Services Management Objects (AMO). Back to the SQL Server 2008 R2 Feature Pack, you need to download and install Microsoft SQL Server 2008 R2 Analysis Management Objects. While you there, you might as well download and install Microsoft Analysis Services OLE DB Provider for Microsoft SQL Server 2008 R2 although I don&#8217;t think PerformancePoint uses it.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://prologika.com/performancepoint-2013-dependencies-for-analysis-services/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What&#8217;s New in Office 2013 BI: Part 5 – New Features in PerformancePoint 2013</title>
		<link>https://prologika.com/what-s-new-in-office-2013-bi-part-5-new-features-in-performancepoint-2013/</link>
					<comments>https://prologika.com/what-s-new-in-office-2013-bi-part-5-new-features-in-performancepoint-2013/#respond</comments>
		
		<dc:creator><![CDATA[Prologika - Teo Lachev]]></dc:creator>
		<pubDate>Fri, 10 Aug 2012 00:29:22 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PerformancePoint]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">/CS/blogs/blog/archive/2012/08/09/what-s-new-in-office-2013-bi-part-5-new-features-in-performancepoint-2013.aspx</guid>

					<description><![CDATA[I&#8217;d delegate this one to the PerformancePoint 2013 blog, where Kevin Donovan, Microsoft Program Manager, nicely addresses PerformancePoint speculation, confusion and misinformation while also introducing what is new in detail.]]></description>
										<content:encoded><![CDATA[<p>I&#8217;d delegate this one to the PerformancePoint 2013 blog, where Kevin Donovan, Microsoft Program Manager, nicely addresses PerformancePoint speculation, confusion and misinformation while also introducing what is new in detail.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://prologika.com/what-s-new-in-office-2013-bi-part-5-new-features-in-performancepoint-2013/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Upgrade Issues with PerformancePoint 2010 Filters</title>
		<link>https://prologika.com/upgrade-issues-with-performancepoint-2010-filters/</link>
					<comments>https://prologika.com/upgrade-issues-with-performancepoint-2010-filters/#respond</comments>
		
		<dc:creator><![CDATA[Prologika - Teo Lachev]]></dc:creator>
		<pubDate>Fri, 16 Dec 2011 01:17:00 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PerformancePoint]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">/CS/blogs/blog/archive/2011/12/15/upgrade-issues-with-performancepoint-2010-filters.aspx</guid>

					<description><![CDATA[Issue: Migrate a PerformancePoint dashboard from MOSS 2007 to SharePoint 2010. We used the Import PerformancePoint Content feature to import existing dashboards from the PerformancePoint database and this saved us [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>Issue:</strong> Migrate a PerformancePoint dashboard from MOSS 2007 to SharePoint 2010. We used the Import PerformancePoint Content feature to import existing dashboards from the PerformancePoint database and this saved us a lot of effort. However, filters failed with this rather obscure error:</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2288 size-full" src="/wp-content/uploads/2011/12/121611_0116_UpgradeIssu1.png" alt="121611_0116_UpgradeIssu1" width="547" height="125" srcset="https://prologika.com/wp-content/uploads/2011/12/121611_0116_UpgradeIssu1.png 547w, https://prologika.com/wp-content/uploads/2011/12/121611_0116_UpgradeIssu1-450x103.png 450w, https://prologika.com/wp-content/uploads/2011/12/121611_0116_UpgradeIssu1-300x69.png 300w" sizes="auto, (max-width: 547px) 100vw, 547px" /></p>
<p>After tracing with SQL Profiler and looking at the Windows Event log, we saw the following almost as useless error):</p>
<p><span style="color: red; font-family: Segoe UI; font-size: 9pt;">Microsoft.AnalysisServices.AdomdClient.AdomdErrorResponseException: Query (1, 7) Parser: The syntax for &#8216;{&#8216; is incorrect.<br />
</span></p>
<p>In this case, the dashboard is using a Time Intelligence filter mapped to an Analysis Services dimension.</p>
<p><strong>Resolution</strong><span style="font-family: Segoe UI; font-size: 9pt;">: </span>The upgrade process has mapped the filter&#8217;s formula in the connection to the scorecard. We fixed the issue by mapping the filter data source (not formula), as shown in the screenshot below. In this case, the CompareDay is the data source name.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-2290" src="/wp-content/uploads/2011/12/121611_0116_UpgradeIssu2-288x300.png" alt="121611_0116_UpgradeIssu2" width="288" height="300" srcset="https://prologika.com/wp-content/uploads/2011/12/121611_0116_UpgradeIssu2-288x300.png 288w, https://prologika.com/wp-content/uploads/2011/12/121611_0116_UpgradeIssu2.png 392w" sizes="auto, (max-width: 288px) 100vw, 288px" /><span style="font-family: Segoe UI; font-size: 9pt;"><br />
</span></p>
]]></content:encoded>
					
					<wfw:commentRss>https://prologika.com/upgrade-issues-with-performancepoint-2010-filters/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Dundas Dashboard and PerformancePoint Comparison Review</title>
		<link>https://prologika.com/dundas-dashboard-and-performancepoint-comparison-review/</link>
					<comments>https://prologika.com/dundas-dashboard-and-performancepoint-comparison-review/#respond</comments>
		
		<dc:creator><![CDATA[Prologika - Teo Lachev]]></dc:creator>
		<pubDate>Wed, 08 Dec 2010 00:59:43 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Articles]]></category>
		<category><![CDATA[PerformancePoint]]></category>
		<guid isPermaLink="false">/CS/blogs/blog/archive/2010/12/07/dundas-dashboard-and-performancepoint-comparison-review.aspx</guid>

					<description><![CDATA[Digital dashboards, also known as enterprise dashboards or executive dashboards, are rapidly rising in popularity as the presentation layer for business intelligence. The chances are that you&#8217;ve been asked to [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Digital dashboards, also known as enterprise dashboards or executive dashboards, are rapidly rising in popularity as the presentation layer for business intelligence. The chances are that you&#8217;ve been asked to implement a dashboard to let management quickly ascertain the status (or &#8220;health&#8221;) of an organization via key business indicators (KPIs) and this task might seem daunting. This is where Dundas Dashboard can help.</p>
<p>As a leader in data visualization solutions, Dundas has given us great products that power many business intelligence solutions, including Microsoft Reporting Services and .NET charting. Its latest offering, Dundas Dashboard 2.5, lets you implement compelling dashboards quickly and easily. Since my career focus has been Microsoft Business Intelligence, I was curious to evaluate the capabilities of Dundas Dashboard and compare them with Microsoft PerformancePoint 2010.</p>
<p>Read the full review <a href="http://www.dashboardinsight.com/sponsored-articles/dundas-dashboard-and-ms-performancepoint-comparison.aspx?page=1">here</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://prologika.com/dundas-dashboard-and-performancepoint-comparison-review/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Importing SSAS KPIs in PerformancePoint</title>
		<link>https://prologika.com/importing-ssas-kpis-in-performancepoint/</link>
					<comments>https://prologika.com/importing-ssas-kpis-in-performancepoint/#respond</comments>
		
		<dc:creator><![CDATA[Prologika - Teo Lachev]]></dc:creator>
		<pubDate>Tue, 07 Sep 2010 15:33:28 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Analysis Services]]></category>
		<category><![CDATA[PerformancePoint]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">/CS/blogs/blog/archive/2010/09/07/importing-ssas-kpis-in-performancepoint.aspx</guid>

					<description><![CDATA[Forging ahead through the unchartered land of PerformancePoint 2010, I ran into a snag today. Attempting to import Analysis Services KPIs resulting in the following error: An unexpected error occurred.  [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Forging ahead through the unchartered land of PerformancePoint 2010, I ran into a snag today. Attempting to import Analysis Services KPIs resulting in the following error:</p>
<p><span style="color: red; font-family: Segoe UI; font-size: 8pt;">An unexpected error occurred.  Error 47205.<br />
</span></p>
<p><span style="color: red; font-family: Segoe UI; font-size: 8pt;">Exception details:<br />
</span></p>
<p><span style="color: red; font-family: Segoe UI; font-size: 8pt;">System.IO.FileNotFoundException: Could not load file or assembly &#8216;Microsoft.AnalysisServices, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91&#8217; or one of its dependencies. The system cannot find the file specified.<br />
</span></p>
<p><span style="color: red; font-family: Segoe UI; font-size: 8pt;">File name: &#8216;Microsoft.AnalysisServices, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91&#8217;<br />
</span></p>
<p><span style="color: red; font-family: Segoe UI; font-size: 8pt;">   at Microsoft.PerformancePoint.Scorecards.Server.ImportExportHelper.GetImportableAsKpis(DataSource asDataSource)<br />
</span></p>
<p><span style="color: red; font-family: Segoe UI; font-size: 8pt;">   at Microsoft.PerformancePoint.Scorecards.Server.PmServer.GetImportableAsKpis(DataSource dataSource)<br />
</span></p>
<p>Since in our case, PerformancePoint was running on a SharePoint web front end server (WFE) which didn&#8217;t have any of the SQL Server 2008 components installed, it was clear that PerformancePoint was missing a connectivity component. Among many other things, I tried installing the Analysis Services Management Objects (AMO) from the SQL Server 2008 <a href="http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&amp;FamilyID=b33d2c78-1059-4ce2-b80d-2343c099bcb4">Feature Pack</a> but the error won&#8217;t go away. I fixed it by running the SQL Server 2008 setup program and installing the Client Tools Connectivity option only. Then, the KPIs magically appear in the Scorecard Wizard.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2463 size-full" src="/wp-content/uploads/2010/09/090710_1533_ImportingSS1.png" alt="090710_1533_ImportingSS1" width="542" height="445" srcset="https://prologika.com/wp-content/uploads/2010/09/090710_1533_ImportingSS1.png 542w, https://prologika.com/wp-content/uploads/2010/09/090710_1533_ImportingSS1-450x369.png 450w, https://prologika.com/wp-content/uploads/2010/09/090710_1533_ImportingSS1-300x246.png 300w" sizes="auto, (max-width: 542px) 100vw, 542px" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://prologika.com/importing-ssas-kpis-in-performancepoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>PerformancePoint 2010</title>
		<link>https://prologika.com/performancepoint-2010/</link>
					<comments>https://prologika.com/performancepoint-2010/#respond</comments>
		
		<dc:creator><![CDATA[Prologika - Teo Lachev]]></dc:creator>
		<pubDate>Fri, 03 Sep 2010 02:52:00 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PerformancePoint]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">/CS/blogs/blog/archive/2010/09/02/performancepoint-2010.aspx</guid>

					<description><![CDATA[PerformancePoint? Is it still around? It is (in SharePoint 2010), and it should peak your interest if you are serious about dashboarding. The planning component is of course gone and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>PerformancePoint? Is it still around? It is (in SharePoint 2010), and it should peak your interest if you are serious about dashboarding. The planning component is of course gone and I have to admit I never had too much faith in it. When comes to dashboards, Microsoft gives you two implementation options:</p>
<ol>
<li>Reporting services reports in SharePoint web parts – Pros include low cost because Reporting Services is available with SharePoint Foundation, and no need to learn new skills. On the downside, you need to implement your own global filter web parts assuming that you don&#8217;t use SharePoint Server.</li>
<li>PerformancePoint – This is tool specifically designed for dashboards and it just got better in SharePoint 2010. However, it requires SharePoint Server 2010 which you need for PowerPivot as well. Unfortunately, this puts you in the $5,000+ upfront investment bucket (Vidas has more to say about SharePoint pricing).</li>
</ol>
<p>Personally, I was pleasantly surprised when I re-discovered PerformancePoint in SharePoint 2010. Here is a cool little dashboard I put together in a couple of hours after importing the Adventure Works KPIs.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2475 size-full" src="/wp-content/uploads/2010/09/090310_0251_Performance1.png" alt="090310_0251_Performance1" width="624" height="433" srcset="https://prologika.com/wp-content/uploads/2010/09/090310_0251_Performance1.png 624w, https://prologika.com/wp-content/uploads/2010/09/090310_0251_Performance1-450x312.png 450w, https://prologika.com/wp-content/uploads/2010/09/090310_0251_Performance1-300x208.png 300w" sizes="auto, (max-width: 624px) 100vw, 624px" /></p>
<p>I&#8217;ve been complaining for a while that Microsoft doesn&#8217;t have a web-based OLAP browser. PerformancePoint reporting capabilities (chart and grid) come pretty close. Below is a grid report bound to the Adventure Works reseller data. It would be really cool if PerformancePoint continues the trend to fill in the gap and adds more Excel-like features, such as filters, slicers, etc.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2477 size-full" src="/wp-content/uploads/2010/09/090310_0251_Performance2.png" alt="090310_0251_Performance2" width="364" height="207" srcset="https://prologika.com/wp-content/uploads/2010/09/090310_0251_Performance2.png 364w, https://prologika.com/wp-content/uploads/2010/09/090310_0251_Performance2-300x171.png 300w" sizes="auto, (max-width: 364px) 100vw, 364px" /></p>
<p>Yes, we now have the ProClarity remnants in the form of a Silverlight-based decomposition tree (requires Silverlight 3.0 on the client). To get it, I right-clicked a cell on the report and clicked Decomposition Tree. This lets me analyze sales by any dimension.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2478 size-full" src="/wp-content/uploads/2010/09/090310_0251_Performance3.png" alt="090310_0251_Performance3" width="624" height="408" srcset="https://prologika.com/wp-content/uploads/2010/09/090310_0251_Performance3.png 624w, https://prologika.com/wp-content/uploads/2010/09/090310_0251_Performance3-450x294.png 450w, https://prologika.com/wp-content/uploads/2010/09/090310_0251_Performance3-300x196.png 300w" sizes="auto, (max-width: 624px) 100vw, 624px" /></p>
<p>So, what&#8217;s the catch except the cost? The ridiculously difficult Kerberos configuration of course if you have a multi-server environment. In our case, just when we thought we conquered the <a href="/CS/blogs/blog/archive/2010/08/23/kerberos-woes.aspx">Kerberos beast with SSRS</a>, we&#8217;ve found the PerformancePoint doesn&#8217;t work. As it turned out, unlike Reporting Services, PerformancePoint requires a constrained delegation and uses the Claims for Token service. So, follow the steps in the <a href="http://go.microsoft.com/fwlink/?LinkID=196600"><span style="font-family: Arial; font-size: 9pt;">Configuring Kerberos Authentication for SSRS 2008 R2 with SharePoint 2010</span></a><span style="color: #333333; font-family: Arial; font-size: 9pt;"> whitepaper closely.</span></p>
<p>If you have SharePoint 2010 Server already, PerformancePoint definitely warrants your interest.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://prologika.com/performancepoint-2010/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
