<?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>David Lai&#039;s Business Intelligence Blog &#187; Xcelsius</title>
	<atom:link href="http://davidlai101.com/blog/category/xcelsius/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidlai101.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 27 Jan 2012 03:02:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Using Xcelsius and Webservices to insert comments into a database</title>
		<link>http://davidlai101.com/blog/2012/01/26/using-xcelsius-and-webservices-to-insert-comments-into-a-database/</link>
		<comments>http://davidlai101.com/blog/2012/01/26/using-xcelsius-and-webservices-to-insert-comments-into-a-database/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 03:02:41 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Workarounds]]></category>
		<category><![CDATA[Xcelsius]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[SAP BusinessObjects Dashboards]]></category>
		<category><![CDATA[Web Service]]></category>
		<category><![CDATA[Xcelsius 2008]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=551</guid>
		<description><![CDATA[A common request that I have seen with my clients, is the ability to enter comments into a dashboard and then view those comments when they re-open the dashboard in the future. Unfortunately Xcelsius does not have a native mechanism to send data back to the database, as a dashboard&#8217;s main purpose to read data [...]]]></description>
			<content:encoded><![CDATA[<p>A common request that I have seen with my clients, is the ability to enter comments into a dashboard and then view those comments when they re-open the dashboard in the future.</p>
<p>Unfortunately Xcelsius does not have a native mechanism to send data back to the database, as a dashboard&#8217;s main purpose to read data and not write back to the database.  However, I do see the value in being able to persist comments so that we can go back later and be able to look at documentation on why certain things happened, etc.</p>
<p>In this article I will give step by step instructions on how to use web services and Xcelsius to accomplish the task of inserting comments.  However you will have to write your own web service code <img src='http://davidlai101.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://davidlai101.com/blog/wp-content/uploads/2012/01/lifecycle.png"><img class="aligncenter size-full wp-image-560" title="lifecycle" src="http://davidlai101.com/blog/wp-content/uploads/2012/01/lifecycle.png" alt="Web Service Comments life cycle" width="664" height="781" /></a></p>
<h1><span id="more-551"></span></h1>
<h1>Preparation</h1>
<p>In order to facilitate the ability to create comments from Xcelsius we must have a mechanism to do so and a place to persist the comments.</p>
<p>You will need to store the comments in a database.</p>
<p>Thus you will need the following:</p>
<ul>
<li>Database</li>
<li>Database table that will house the comments and additional parameters such as user, dashboard, etc</li>
</ul>
<p>To allow Xcelsius to send comments to the database, we will need to create a <em>Web Service</em> and then call that <em>Web Service</em> from Xcelsius while sending in the appropriate parameters (comments, user, dashboard, etc).</p>
<p>To facilitate the ability to use Web Services, you must have a .NET or Java application server available.</p>
<h1>Pseudo steps to create the Web Service</h1>
<ol>
<li>Start creating your web service using the programming language of choice (VB .NET or Java)</li>
<li>Create a method that will house your “insert comment” code</li>
<li>Method will need to have input parameters that contains your comment text and any other parameters such as user, dashboard, etc</li>
</ol>
<p><span style="color: #99ccff;"><strong>       Steps in the method</strong></span></p>
<ol>
<li><span style="color: #99ccff;">Log into database</span></li>
<li><span style="color: #99ccff;">Begin Transaction</span></li>
<li><span style="color: #99ccff;">Create insert statement that will insert the input parameters (comment text, etc)</span></li>
<li><span style="color: #99ccff;">Make sure that there is some sort of rollback mechanism to handle errors</span></li>
<li><span style="color: #99ccff;">End transaction</span></li>
<li><span style="color: #99ccff;">Close database connection</span></li>
</ol>
<p>When you are finished coding, you will then need to deploy the Web Service onto your .NET or Java application server.</p>
<h1>Useful Resources to help you code your Web Service</h1>
<p>1.  Introduction on what a Web Service is</p>
<p><a href="http://en.wikipedia.org/wiki/Web_service">http://en.wikipedia.org/wiki/Web_service</a></p>
<p><a href="http://www.w3schools.com/webservices/ws_intro.asp">http://www.w3schools.com/webservices/ws_intro.asp</a></p>
<p>2.  Example of creating a simple VB . NET Web Service for a .NET application server</p>
<p><a href="http://www.w3schools.com/webservices/ws_example.asp">http://www.w3schools.com/webservices/ws_example.asp</a><br />
3.  Example of creating a simple java based Web Service that runs on a Java server</p>
<p><a href="http://www.roseindia.net/webservices/buildingsimplewebservice.shtml">http://www.roseindia.net/webservices/buildingsimplewebservice.shtml</a></p>
<p>4.  Java code to connect to a DB, create a table, insert into table, and retrieve from a table (you are only interested in inserting) Start on step 22 if you are interested in the code</p>
<p><a href="http://www.java2s.com/Code/Java/Database-SQL-JDBC/AccessMySQLDatabaseopenconnectioncreatetableinsertandretrieve.htm">http://www.java2s.com/Code/Java/Database-SQL-JDBC/AccessMySQLDatabaseopenconnectioncreatetableinsertandretrieve.htm</a></p>
<h1>Xcelsius Steps</h1>
<p>In the Xcelsius example, we will walk through the steps on creating an input/output comment box; and creating a web service connection that inserts a user&#8217;s comment into the database.</p>
<p>1.  Drag an <em>Input Text Area</em> and <em>Label </em>component onto the canvas.  Users will enter their comments into the input text area and the label component contain existing comments.</p>
<p>&nbsp;</p>
<p>2.  Bind the <em>Input Text </em>Area to the cell highlighted in yellow.  The web service connection will use this as one of the inputs.</p>
<p style="text-align: center;"><a href="http://davidlai101.com/blog/wp-content/uploads/2012/01/bind_input_text.png"><img class="aligncenter size-full wp-image-558" title="bind_input_text" src="http://davidlai101.com/blog/wp-content/uploads/2012/01/bind_input_text.png" alt="Bind input text" width="908" height="574" /></a></p>
<p>3.  Now let&#8217;s setup our Web Service Connection.  On the data manager, add a <em>Web Service Connection</em> and enter the WSDL url into the <em>WSDL URL: input box</em>.</p>
<p>4.  Bind the input values to the cells of your spreadsheet.  (In our example we bind to 3 input values. Note that the output value is optional so we will skip that part.  In addition we will skip creating a Web Service Connection that retreives prior comments since it uses the same concept of what we are doing here)</p>
<p><a href="http://davidlai101.com/blog/wp-content/uploads/2012/01/datamanager.png"><img class="aligncenter size-full wp-image-559" title="datamanager" src="http://davidlai101.com/blog/wp-content/uploads/2012/01/datamanager.png" alt="Data Manager" width="1116" height="627" /></a></p>
<p>5.  Insert a <em>Connection Refresh Button</em> component onto the canvas.  Make sure the <em>Web Service Connection</em> is checked.</p>
<p><a href="http://davidlai101.com/blog/wp-content/uploads/2012/01/comment_button.png"><img class="aligncenter size-full wp-image-563" title="comment_button" src="http://davidlai101.com/blog/wp-content/uploads/2012/01/comment_button.png" alt="Connection Refresh Button" width="969" height="359" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2012/01/26/using-xcelsius-and-webservices-to-insert-comments-into-a-database/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BI Web Services presentation from SAP Inside Track 2011 now available for download!</title>
		<link>http://davidlai101.com/blog/2011/10/03/bi-web-services-presentation-from-sap-inside-track-2011-now-available-for-download/</link>
		<comments>http://davidlai101.com/blog/2011/10/03/bi-web-services-presentation-from-sap-inside-track-2011-now-available-for-download/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 19:38:19 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Business Objects]]></category>
		<category><![CDATA[Design Practices]]></category>
		<category><![CDATA[Xcelsius]]></category>
		<category><![CDATA[BI Web Services]]></category>
		<category><![CDATA[Business Objects Dashboards]]></category>
		<category><![CDATA[Data Connectivity]]></category>
		<category><![CDATA[Xcelsius 2008]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=490</guid>
		<description><![CDATA[Thanks to everyone who attended my presentation on BI Web Services at SAP Inside Track Vancouver 2011! A replay of the presentation can be found at the following link =&#62; http://bit.ly/rkBU1p I&#8217;ve also attached the powerpoint presentation that you can download here &#160;]]></description>
			<content:encoded><![CDATA[<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/09/SAPVancouver.jpg"><img class="aligncenter size-medium wp-image-464" title="SAPVancouver" src="http://davidlai101.com/blog/wp-content/uploads/2011/09/SAPVancouver-300x171.jpg" alt="SAP Inside Track Vancouver 2011" width="500" height="250" /></a>Thanks to everyone who attended my presentation on BI Web Services at SAP Inside Track Vancouver 2011!</p>
<p>A replay of the presentation can be found at the following link =&gt; <a href="http://bit.ly/rkBU1p">http://bit.ly/rkBU1p</a></p>
<p>I&#8217;ve also attached the powerpoint presentation that you can download <a title="BI Web Services Presentation" href="http://davidlai101.com/blog/wp-content/uploads/2011/09/Leveraging-BI-Web-Services.pptx" target="_blank">here</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2011/10/03/bi-web-services-presentation-from-sap-inside-track-2011-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>All you need to know about Open Document (opendoc) Part 2</title>
		<link>http://davidlai101.com/blog/2011/09/29/all-you-need-to-know-about-open-document-opendoc-part-2/</link>
		<comments>http://davidlai101.com/blog/2011/09/29/all-you-need-to-know-about-open-document-opendoc-part-2/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 18:11:18 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Business Objects]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Xcelsius]]></category>
		<category><![CDATA[Open Document]]></category>
		<category><![CDATA[opendoc]]></category>
		<category><![CDATA[SAP BusinessObjects Dashboards]]></category>
		<category><![CDATA[Xcelsius 2008]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=472</guid>
		<description><![CDATA[I&#8217;ve been getting a lot of emails lately on how to setup opendocument (opendoc), so I&#8217;d like to post this tutorial on how to do so which works for Business Objects XI 3.1. Unfortunately my previous tutorial at http://davidlai101.com/blog/2008/11/04/all-you-need-to-know-about-opendoc/ only works with Business Objects XI R2 Please note that the tutorial was taken from SAP BusinessObjects [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been getting a lot of emails lately on how to setup opendocument (opendoc), so I&#8217;d like to post this tutorial on how to do so which works for Business Objects XI 3.1.</p>
<p>Unfortunately my previous tutorial at <a href="http://davidlai101.com/blog/2008/11/04/all-you-need-to-know-about-opendoc/">http://davidlai101.com/blog/2008/11/04/all-you-need-to-know-about-opendoc/</a> only works with Business Objects XI R2</p>
<p>Please note that the tutorial was taken from <a title="SAP BusinessObjects Dashboard 4.0 Cookbook" href="http://link.packtpub.com/fWXghv" target="_blank">SAP BusinessObjects Dashboards 4.0 Cookbook</a> so if you are interested in more useful Xcelsius recipes, be sure to purchase a copy <img src='http://davidlai101.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you only need the Excel Template for setting up OpenDocument calls, you can download it <a title="OpenDoc 3.1 Excel Template" href="http://davidlai101.com/blog/wp-content/uploads/2011/09/OpenDoc_Template-XI31.xls" target="_blank">here</a></p>
<p>If you are interested in getting detailed information on OpenDocument Parameters please download the official SAP OpenDocument documentation <a href="http://help.sap.com/businessobject/product_guides/boexir3/en/xi3-1_url_reporting_opendocument_en.pdf" title="SAP OpenDocument Documentation" target="_blank">here</a></p>
<p>Otherwise continue reading for the Tutorial<span id="more-472"></span></p>
<h2>Getting ready</h2>
<p>A WEBI report with a prompt must be setup first.  In our example, the WEBI report will ask for a Region parameter.</p>
<p>You can download the example XLF source file from <a title="XLF Source" href="http://davidlai101.com/blog/wp-content/uploads/2011/09/c3r12.zip" target="_blank">here</a></p>
<h2>How to do it&#8230;</h2>
<p>1.            Drag a <strong>Combo Box</strong> selector onto the canvas and bind the label values to the list of Regions on the Excel spreadsheet as shown below. Set <strong>Label</strong> as the <strong>Insertion Type </strong>and bind the <strong>Destination</strong> to the cell highlighted in yellow, which will be the input parameter passed to the opendoc call.</p>
<p> <a href="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_63.png"><img class="aligncenter size-full wp-image-474" title="1780EN_03_63" src="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_63.png" alt="" width="608" height="452" /></a></p>
<p>2.            Log into <strong>BI Launch Pad</strong> (Formerly<strong> Infoview</strong>), go to the location of where the Web Intelligence report is located. Right click and select properties.</p>
<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_64.png"><img class="aligncenter size-full wp-image-475" title="1780EN_03_64" src="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_64.png" alt="" width="768" height="298" /></a></p>
<p>3.            Copy the <strong>CUID</strong></p>
<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_65.png"><img class="aligncenter size-full wp-image-476" title="1780EN_03_65" src="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_65.png" alt="" width="560" height="259" /></a></p>
<p>4.            On cell <strong>B14</strong> shown below, an opendoc url is constructed. Paste the <strong>CUID</strong> from Step 3 onto Cell<strong> B23 highlighted in grey</strong>. Cell <strong>C23</strong> equals the <strong>Selected Region</strong> cell <strong>C2</strong> from Step 1.</p>
<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_66.png"><img class="aligncenter size-full wp-image-477" title="1780EN_03_66" src="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_66.png" alt="" width="963" height="488" /></a></p>
<p>5.            Drag a <strong>URL Button</strong> component onto the canvas from the<strong> Web Connectivity</strong> section of the <strong>Components</strong> window. In the<strong> URL Button</strong> properties change the <strong>Label</strong> text to<strong> Open WEBI report</strong>, and bind the URL to the opendoc url cell <strong>B14</strong> from Step 2.</p>
<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_67.png"><img class="aligncenter size-full wp-image-478" title="1780EN_03_67" src="http://davidlai101.com/blog/wp-content/uploads/2011/09/1780EN_03_67.png" alt="" width="656" height="340" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2011/09/29/all-you-need-to-know-about-open-document-opendoc-part-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SAP Inside Track Vancouver Sept 27, 2011-&gt; Leveraging the power of BI Web Services to build better dashboards</title>
		<link>http://davidlai101.com/blog/2011/09/24/sap-inside-track-vancouver-sept-27-2011-leveraging-the-power-of-bi-web-services-to-build-better-dashboards/</link>
		<comments>http://davidlai101.com/blog/2011/09/24/sap-inside-track-vancouver-sept-27-2011-leveraging-the-power-of-bi-web-services-to-build-better-dashboards/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 17:22:07 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Business Objects]]></category>
		<category><![CDATA[Main]]></category>
		<category><![CDATA[Xcelsius]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=462</guid>
		<description><![CDATA[I&#8217;ve been given the opportunity to share my experiences with BI Web Services and how to build more efficient dashboards using BI Web Services in the upcoming SAP Inside Track Vancouver 2011.  Please mark your calendars for September 27, 2011 2:30pm -&#62; 3:20pm PST! In this presentation you&#8217;ll learn about BI Web Services and how [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/09/SAPVancouver.jpg"><img class="aligncenter size-full wp-image-464" title="SAPVancouver" src="http://davidlai101.com/blog/wp-content/uploads/2011/09/SAPVancouver.jpg" alt="SAP Inside Track Vancouver 2011" width="829" height="473" /></a></p>
<p>I&#8217;ve been given the opportunity to share my experiences with BI Web Services and how to build more efficient dashboards using BI Web Services in the upcoming SAP Inside Track Vancouver 2011.  Please mark your calendars for <strong>September 27, 2011 2:30pm -&gt; 3:20pm PST</strong>!</p>
<p>In this presentation you&#8217;ll learn about BI Web Services and how it provides a hybrid of QaaWS and Live Office.  As well as some new powerful features that were not available before. We&#8217;ll also discuss some limitations and work arounds to prepare you for the road ahead.</p>
<p>For those who are attending, there will be a set of door prizes which include copies of my book <a title="SAP BusinessObjects Dashboards 4.0 Cookbook" href="http://www.packtpub.com/sap-businessobjects-dashboards-4-0-cookbook/book" target="_blank">SAP BusinessObjects Dashboards 4.0 Cookbook</a></p>
<p>For those who cannot physically attend, there will be a remote access link found in the wiki link below.</p>
<p>For more information on the event, please visit <a href="http://wiki.sdn.sap.com/wiki/display/events/SAP+Inside+Track+Vancouver+2011" target="_blank">http://wiki.sdn.sap.com/wiki/display/events/SAP+Inside+Track+Vancouver+2011</a></p>
<p>Hope to see everyone there! <img src='http://davidlai101.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2011/09/24/sap-inside-track-vancouver-sept-27-2011-leveraging-the-power-of-bi-web-services-to-build-better-dashboards/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bug in Xcelsius 2008 SP4 that does not allow dynamic color changing</title>
		<link>http://davidlai101.com/blog/2011/08/12/bug-in-xcelsius-2008-sp4-that-does-not-allow-dynamic-color-changing/</link>
		<comments>http://davidlai101.com/blog/2011/08/12/bug-in-xcelsius-2008-sp4-that-does-not-allow-dynamic-color-changing/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 14:38:19 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Xcelsius]]></category>
		<category><![CDATA[Dynamic Color Binding]]></category>
		<category><![CDATA[SAP BusinessObjects Dashboards]]></category>
		<category><![CDATA[Xcelsius 2008]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=455</guid>
		<description><![CDATA[I&#8217;ve had several comments on my &#8220;Xcelsius Dynamic Color Binding&#8221; post regarding issues where their dynamic colors were not changing. Well I did a quick test and yes there is a bug! So I wanted to warn everyone including SAP about this new bug. I&#8217;ve tried both methods where I use the color code and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/08/dynamic_color_error1.png"><img class="aligncenter size-full wp-image-456" title="dynamic_color_error1" src="http://davidlai101.com/blog/wp-content/uploads/2011/08/dynamic_color_error1.png" alt="" width="753" height="458" /></a><br />
I&#8217;ve had several comments on my &#8220;Xcelsius Dynamic Color Binding&#8221; post regarding issues where their dynamic colors were not changing.</p>
<p>Well I did a quick test and yes there is a bug! So I wanted to warn everyone including SAP about this new bug.</p>
<p><span id="more-455"></span></p>
<p>I&#8217;ve tried both methods where I use the color code and the color itself, and both give the error.</p>
<p>Here are the steps shown to reproduce the problem<br />
First try to bind a chart series color to a dynamic cell (In this case I tried cells with both the name and code)</p>
<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/08/dynamic_color_error2.png"><img class="aligncenter size-full wp-image-458" title="dynamic_color_error2" src="http://davidlai101.com/blog/wp-content/uploads/2011/08/dynamic_color_error2.png" alt="" width="859" height="479" /></a></p>
<p>As soon as you bind the cell, you will get the error as shown below. After that whenever the cell changes, the color will not be reflected appropriately on your chart.</p>
<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/08/dynamic_color_error3.png"><img class="aligncenter size-full wp-image-459" title="dynamic_color_error3" src="http://davidlai101.com/blog/wp-content/uploads/2011/08/dynamic_color_error3.png" alt="" width="821" height="511" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2011/08/12/bug-in-xcelsius-2008-sp4-that-does-not-allow-dynamic-color-changing/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Congratulations to our tweetaway contest winners!</title>
		<link>http://davidlai101.com/blog/2011/07/26/congratulations-to-our-tweetaway-contest-winners/</link>
		<comments>http://davidlai101.com/blog/2011/07/26/congratulations-to-our-tweetaway-contest-winners/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 21:02:59 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Business Objects]]></category>
		<category><![CDATA[Main]]></category>
		<category><![CDATA[Xcelsius]]></category>
		<category><![CDATA[SAP BusinessObjects Dashboards]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=446</guid>
		<description><![CDATA[I&#8217;d like to give a big thanks for everyone who participated in the SAP BusinessObjects Dashboards 4.0 Cookbook Tweetaway contest! I was very impressed with the huge amount of tweets so Thanks everyone! I&#8217;d like to congratulate the 2 lucky tweeters who have won an eBook copy of SAP BusinessObjects Dashboards 4.0 Cookbook They are [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/07/twitter.jpg"><img class="alignleft size-full wp-image-438" title="twitter contest" src="http://davidlai101.com/blog/wp-content/uploads/2011/07/twitter.jpg" alt="tweet to win!" width="104" height="104" /></a>I&#8217;d like to give a big thanks for everyone who participated in the SAP BusinessObjects Dashboards 4.0 Cookbook Tweetaway contest!<br />
I was very impressed with the huge amount of tweets so Thanks everyone!</p>
<p>I&#8217;d like to congratulate the 2 lucky tweeters who have won an eBook copy of SAP BusinessObjects Dashboards 4.0 Cookbook</p>
<p><strong>They are &#8230;&#8230;..</strong></p>
<hr />
<p><strong>rodri_m_d</strong><br />
<strong>montoyainigo</strong></p>
<hr />
We&#8217;ll be contacting you shortly to give you your copies of SAP BusinessObjects Dashboards 4.0 Cookbook</p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2011/07/26/congratulations-to-our-tweetaway-contest-winners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP BusinessObjects Dashboards Cookbook Giveaway Twitter Contest!</title>
		<link>http://davidlai101.com/blog/2011/07/08/free-sap-businessobjects-dashboards-cookbook-giveaway-twitter-contest/</link>
		<comments>http://davidlai101.com/blog/2011/07/08/free-sap-businessobjects-dashboards-cookbook-giveaway-twitter-contest/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 10:01:12 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Business Objects]]></category>
		<category><![CDATA[Main]]></category>
		<category><![CDATA[Xcelsius]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=427</guid>
		<description><![CDATA[Hi everyone! Packt Publishing is having a promotion where we will be giving away 2 free eBook copies of our newly released SAP BusinessObjects Dashboards Cookbook. On Monday July 25, 2011 we will be randomly drawing 2 winners and grant them access to their free eBooks! All you need to do to join the Tweetaway [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/home?status=SAP BusinessObjects Dashboards 4.0 cookbook - RT to join free eBook giveaway! http://t.co/MYpbCuM"><img src="http://davidlai101.com/blog/wp-content/uploads/2011/07/twitter.jpg" alt="tweet to win!" title="twitter contest" width="104" height="104" class="alignleft size-full wp-image-438" /></a>Hi everyone! Packt Publishing is having a promotion where we will be giving away <strong>2 free eBook </strong>copies of our newly released <strong>SAP BusinessObjects Dashboards Cookbook</strong>.</p>
<p>On <strong>Monday July 25, 2011</strong> we will be randomly drawing 2 winners and grant them access to their free eBooks!</p>
<p>All you need to do to join the Tweetaway twitter contest is to send out a tweet with a <a href="http://www.packtpub.com/sap-businessobjects-dashboards-4-0-cookbook/book">link</a> to the SAP BusinessObjects Dashboards Cookbook <a href="http://www.packtpub.com/sap-businessobjects-dashboards-4-0-cookbook/book">page</a>.</p>
<p>The easiest way is to tweet by clicking on this <a href="http://twitter.com/home?status=SAP BusinessObjects Dashboards 4.0 cookbook - RT to join free eBook giveaway! http://t.co/MYpbCuM"><strong>link!</strong></a> or you can use the <em>share buttons</em> from the PacktPub SAP BusinessObjects Dashboards Cookbook <a href="http://www.packtpub.com/sap-businessobjects-dashboards-4-0-cookbook/book">page</a></p>
<p><strong>Retweeting</strong> other tweets is also allowed and there are <strong>no limits</strong> to how many tweets you can tweet!</p>
<p>Good luck and happy tweeting!!</p>
<p><script src="http://widgets.twimg.com/j/2/widget.js"></script> <script type="text/javascript">// <![CDATA[
new TWTR.Widget({   version: 2,   type: 'search',   search: 'SAP BusinessObjects Dashboards 4.0 cookbook',   interval: 6000,   title: 'SAP BusinessObjects Dashboards 4.0 cookbook',   subject: 'Tweetaway',   width: 550,   height: 200,   theme: {     shell: {       background: '#8ec1da',       color: '#ffffff'     },     tweets: {       background: '#ffffff',       color: '#444444',       links: '#1985b5'     }   },   features: {     scrollbar: false,     loop: true,     live: true,     hashtags: true,     timestamp: true,     avatars: true,     toptweets: true,     behavior: 'default'   } }).render().start();
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2011/07/08/free-sap-businessobjects-dashboards-cookbook-giveaway-twitter-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcelsius 2008 SP4 adds some very useful features!</title>
		<link>http://davidlai101.com/blog/2011/06/28/xcelsius-2008-sp4-adds-some-very-useful-features/</link>
		<comments>http://davidlai101.com/blog/2011/06/28/xcelsius-2008-sp4-adds-some-very-useful-features/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 17:39:43 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Xcelsius]]></category>
		<category><![CDATA[Combination chart]]></category>
		<category><![CDATA[spreadsheet table]]></category>
		<category><![CDATA[Waterfall]]></category>
		<category><![CDATA[Xcelsius 2008 SP4]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=423</guid>
		<description><![CDATA[I hope everyone has had the chance to experiment with the new features on Xcelsius 2008 SP4 as I am already using them for my current client projects. The following features were added Waterfall charts Combination charts can have alerts for multiple series Added alerts into the spreadsheet components The new waterfall chart component saves developers [...]]]></description>
			<content:encoded><![CDATA[<p>I hope everyone has had the chance to experiment with the new features on Xcelsius 2008 SP4 as I am already using them for my current client projects.</p>
<p>The following features were added</p>
<li>Waterfall charts</li>
<li>Combination charts can have alerts for multiple series</li>
<li>Added alerts into the spreadsheet components</li>
<p>The new waterfall chart component saves developers the hassle of emulating one using the stacked bar chart and excel logic.  For those of you who haven&#8217;t upgraded to SP4 you can find a good example of completing waterfall charts @ <a href="http://www.femkekooij.nl/?p=325">http://www.femkekooij.nl/?p=325</a>. To see how much easier and cleaner it is to create a waterfall chart using the waterfall component, check out the example @ <a href="http://myxcelsius.com/2011/06/15/xcelsius-2008-sp4-waterfall-chart/">http://myxcelsius.com/2011/06/15/xcelsius-2008-sp4-waterfall-chart/</a></p>
<p>The other major new feature that I consider very useful, is the ability to replace the scorecard component with spreadsheet table alerts.  Please read my post @ <a href="http://myxcelsius.com/2011/06/28/xcelsius-2008-sp4-spreadsheet-alerts/">http://myxcelsius.com/2011/06/28/xcelsius-2008-sp4-spreadsheet-alerts/</a> to see how you can use the spreadsheet component to accomplish what you need from a scorecard component and more!</p>
<p>The combination charts having alert capabilities is also very important as we do not have to overlay multiple charts on top of each other anymore to accomplish alerting functionality.</p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2011/06/28/xcelsius-2008-sp4-adds-some-very-useful-features/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SAP BusinessObjects Dashboards Cookbook now available!</title>
		<link>http://davidlai101.com/blog/2011/06/08/sap-businessobjects-dashboards-cookbook-now-available/</link>
		<comments>http://davidlai101.com/blog/2011/06/08/sap-businessobjects-dashboards-cookbook-now-available/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 17:56:41 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Main]]></category>
		<category><![CDATA[Xcelsius]]></category>
		<category><![CDATA[Cookbook]]></category>
		<category><![CDATA[PacktPub]]></category>
		<category><![CDATA[SAP BusinessObjects Dashboards]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=410</guid>
		<description><![CDATA[I&#8217;m very proud to announce that SAP BusinessObjects Dashboards Cookbook is officially available.  For the past year, Xavier Hacking and I together with Packt Publishing have carefully compiled over 90 recipes on transforming your data into highly effective dashboards. We cover the ins and outs of using the Dashboard Design components, connecting to different data [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very proud to announce that SAP BusinessObjects Dashboards Cookbook is officially available.  For the past year, <a href="http://www.hackingsap.com/blog/">Xavier Hacking</a> and I together with <a href="http://link.packtpub.com/fWXghv">Packt Publishing</a> have carefully compiled over 90 recipes on transforming your data into highly effective dashboards.</p>
<p>We cover the ins and outs of using the Dashboard Design components, connecting to different data sources, as well as providing examples on how to use many of the top Xcelsius Addons.  Each recipe contains easy to follow step by step instructions and screenshots on accomplishing each task.  In addition, XLF example source files are also included for every recipe to make sure users are following the recipes correctly.</p>
<p>The book is published in eBook (ePub and DRM-free PDF) and paperback format and is available from the <a href="http://link.packtpub.com/fWXghv" target="_blank">Packt Publishing website</a></p>
<p><a href="http://link.packtpub.com/fWXghv"><img class="alignnone" style="margin-left: 70px; margin-right: 70px;" title="SAP BusinessObjects Cookbook cover" src="http://www.packtpub.com/sites/default/files/1780EN_SAP%20BusinessObjects%20Dashboards%204.jpg" alt="" width="403" height="497" /></a></p>
<p><span id="more-410"></span></p>
<h4>SAP BusinessObjects Dashboards 4.0 Cookbook overview</h4>
<p><em>Over 90 simple and incredibly effective recipes for transforming your business data into exciting dashboards with SAP BusinessObjects Dashboards 4.0 Xcelsius</em></p>
<p>Xcelsius 2008 was recently included in SAP’s BusinessObjects 4.0 family, rebranding “Xcelsius Enterprise” as “SAP BusinessObjects Dashboards 4.0”. With features like flexible design and what-if scenarios, the powerful dashboarding software allows enterprises to make business decisions at a glance, and this book allows you to go far beyond the basics of these techniques.</p>
<p>This cookbook full of practical and applicable recipes will enable you to use the full latest capabilities of Dashboard Design to visually transform your business data. A wide range of recipes will equip you with the knowledge and confidence to perform tasks like configuring charts, creating drill- downs, making component colors dynamic, using alerts in maps, building pop-up screens, setting up What-If scenarios, and many more.</p>
<p>The recipes begin by covering best practices for using the Dashboard Design spreadsheet, the data-model, and the connection with the components on the canvas, later moving on to some from-the-trenches tricks for using Excel within Dashboard Design. The book then guides you through the exploration of various data visualization components and dashboard interactivity, as well as offering recipes on using alerts, dashboard connectivity, and making the most of the aesthetics of the dashboard. Finally, the recipes conclude by considering the most important add-ons available for Dashboard Design and enabling you to perform relevant and useful tasks straight away.</p>
<p><strong>What you will learn from this book :</strong></p>
<ul>
<li>Become fully equipped with best practices for using the Dashboard Design spreadsheet</li>
<li>Present data using the wide variety of data visualization components</li>
<li>Learn how to make dashboard components interactive for an enhanced user experience</li>
<li>Take advantage of Dynamic Visibility features on the dashboard</li>
<li>Master manipulating the look and feel of your dashboards</li>
<li>Gain confidence in using alerts on charts and other components</li>
<li>Get to grips with advanced Dashboard Design components like the Trend Analyzer, Fisheye Picture Menu, History Component, and the Canvas Component</li>
<li>Optimize the user experience of the dashboard</li>
<li>Connect your dashboard to live data sources</li>
<li>Export and publish the Dashboard Design model into several environments.</li>
<li>Learn about the most applicable add-ons available for your dashboard requirements.</li>
<li>Master setting up alerts on charts, gauges, maps and scorecards</li>
</ul>
<p><strong>Approach</strong></p>
<p>This guide to SAP BusinessObjects Dashboards 4.0 (formerly Xcelsius )is a cookbook packed full of practical recipes written in a clear, concise manner with annotated examples to empower readers to quickly accomplish specific dashboard tasks.</p>
<p><strong>Who this book is written for</strong></p>
<p>If you are a developer with a good command and knowledge of creating dashboards, but are not yet an advanced Dashboard Design user, then this is the perfect book for you. You should have a good working knowledge of Microsoft Excel as well as knowledge of basic dashboard practices, though experience of Dashboard Design as a specific dashboard tool is not essential.</p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2011/06/08/sap-businessobjects-dashboards-cookbook-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thanks for attending the Toronto BusinessObjects Customer Exchange!</title>
		<link>http://davidlai101.com/blog/2011/04/14/thanks-for-attending-the-toronto-businessobjects-customer-exchange/</link>
		<comments>http://davidlai101.com/blog/2011/04/14/thanks-for-attending-the-toronto-businessobjects-customer-exchange/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 16:38:14 +0000</pubDate>
		<dc:creator>David Lai</dc:creator>
				<category><![CDATA[Business Objects]]></category>
		<category><![CDATA[Main]]></category>
		<category><![CDATA[Xcelsius]]></category>

		<guid isPermaLink="false">http://davidlai101.com/blog/?p=398</guid>
		<description><![CDATA[BOCX Speaker Deck I&#8217;d like to send out a special thank you to all of those who attended the Toronto BusinessObjects Customer Exchange yesterday.  The event wouldn&#8217;t have been a success without the support of all those who attended. I am hoping that everyone had a great learning experience! For those who attended my presentation [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://davidlai101.com/blog/wp-content/uploads/2011/04/BOCX-Speaker-Deck.ppt">BOCX Speaker Deck</a><a href="http://davidlai101.com/blog/wp-content/uploads/2011/04/bobj-toronto-spring-summit-home1.jpg"><img class="alignleft size-full wp-image-399" title="bobj-toronto-spring-summit" src="http://davidlai101.com/blog/wp-content/uploads/2011/04/bobj-toronto-spring-summit-home1.jpg" alt="" width="297" height="215" /></a></p>
<p>I&#8217;d like to send out a special thank you to all of those who attended the Toronto BusinessObjects Customer Exchange yesterday.  The event wouldn&#8217;t have been a success without the support of all those who attended. I am hoping that everyone had a great learning experience!</p>
<p>For those who attended my presentation on dashboard essentials, you can download a copy of the presentation deck below</p>
<p><a title="Dashboard Essentials Presentation Deck" href="http://davidlai101.com/blog/wp-content/uploads/2011/04/BOCX-Speaker-Deck.ppt" target="_blank">Download powerpoint presentation here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://davidlai101.com/blog/2011/04/14/thanks-for-attending-the-toronto-businessobjects-customer-exchange/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

