<?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>The Official BI Twibe Blog</title>
	<atom:link href="http://wschampheleer.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wschampheleer.wordpress.com</link>
	<description>Business Intelligence and Data Warehousing</description>
	<lastBuildDate>Wed, 12 Oct 2011 10:51:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='wschampheleer.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/2548866772abdc1726ab7bd4c02adf2a?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>The Official BI Twibe Blog</title>
		<link>http://wschampheleer.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://wschampheleer.wordpress.com/osd.xml" title="The Official BI Twibe Blog" />
	<atom:link rel='hub' href='http://wschampheleer.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Degenerate dimensions in SSAS</title>
		<link>http://wschampheleer.wordpress.com/2009/12/20/degenerate-dimensions-in-ssas/</link>
		<comments>http://wschampheleer.wordpress.com/2009/12/20/degenerate-dimensions-in-ssas/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 10:51:17 +0000</pubDate>
		<dc:creator>willem42195</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Degenerate Dimension]]></category>
		<category><![CDATA[SSAS]]></category>

		<guid isPermaLink="false">http://wschampheleer.wordpress.com/?p=156</guid>
		<description><![CDATA[This post is about a quirk in Analysis Services (version 2008 is used for this article) that can be quite annoying (and difficult to debug) if you&#8217;re not aware of it. The next steps describe how you can reproduce the issue with a simple example. First, create a new table: CREATE TABLE sales (product VARCHAR(50), [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=156&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is about a quirk in Analysis Services (version 2008 is used for this article) that can be quite annoying (and difficult to debug) if you&#8217;re not aware of it. The next steps describe how you can reproduce the issue with a simple example.</p>
<p>First, create a new table:</p>
<p style="padding-left:30px;">CREATE TABLE sales (product VARCHAR(50), product_nr INT, price MONEY)</p>
<p>We will use this table for creating a fact table (measure = price) with a degenerate dimension (product) in SSAS. The key for the degenerate dimension is product. The column product_nr is only added to illustrate more clearly what is happening.</p>
<p>Add some data:</p>
<p style="padding-left:30px;">INSERT INTO sales (product, product_nr, price)<br />
VALUES (&#8216;Car&#8217;, 1, 99.99),<br />
(&#8216;Car&#8217; + CHAR(9) + CHAR(10) + CHAR(13), 2, 199.99)</p>
<p>Note that in T-SQL, both products are different.</p>
<p style="padding-left:30px;">SELECT DISTINCT product FROM sales</p>
<p>returns the following 2 rows</p>
<p style="padding-left:30px;">product<br />
Car<br />
Car</p>
<p>but it&#8217;s hard to see the difference. The following statement will make this more clear:</p>
<p style="padding-left:30px;">SELECT REPLACE(REPLACE(REPLACE([product],CHAR(9),&#8217;*TAB*&#8217;),CHAR(10),&#8217;*LF*&#8217;),CHAR(13),&#8217;*CR*&#8217;) AS product FROM sales</p>
<p>returns</p>
<p style="padding-left:30px;">product<br />
Car<br />
Car*TAB**LF**CR*</p>
<p>Now create a dimension in SSAS from the Sales table with the following 2 attributes: product (<strong>key</strong>) and product_nr. When you process the dimension, you will get the following error:</p>
<p style="padding-left:30px;">Internal error: The operation terminated unsuccessfully.<br />
Server: The operation has been cancelled.<br />
Errors in the OLAP storage engine: A duplicate attribute key has been found when processing: Table: &#8216;dbo_Sales&#8217;, Column: &#8216;product&#8217;, Value: &#8216;Car&#8217;. The attribute is &#8216;Product&#8217;.</p>
<p>Now, how is that possible? We just proved that there are no duplicate values (you can add a primary key or unique constraint to be 100% sure if you want)!</p>
<p>The reason is that when processing the dimension, SSAS by default does a right trim and this eliminates not only the spaces, but also any of the three special characters (tab, line feed and carriage return) we added! Note how this differs from T-SQL where these characters are not impacted by RTRIM as can be seen here:</p>
<p style="padding-left:30px;">SELECT REPLACE(REPLACE(REPLACE(<strong>RTRIM</strong>([product]),CHAR(9),&#8217;*TAB*&#8217;),CHAR(10),&#8217;*LF*&#8217;),CHAR(13),&#8217;*CR*&#8217;) AS product FROM sales</p>
<p>still returns</p>
<p style="padding-left:30px;">product<br />
Car<br />
Car*TAB**LF**CR*</p>
<p>Now, let&#8217;s change the default behaviour. Change the trimming from Right to None by going to the properties of the product attribute. Use the following screen shot as a guide to find where this setting is hiding.</p>
<p><a href="http://wschampheleer.files.wordpress.com/2009/12/trim2.jpg"><img src="http://wschampheleer.files.wordpress.com/2009/12/trim2.jpg?w=460&#038;h=269" alt="" title="trim" width="460" height="269" class="aligncenter size-full wp-image-160" /></a><br />
Now the dimension processes smoothly. Problem solved? Not quite!<br />
To illustrate this, create a cube with the following options:<br />
measure group table = sales, measure = price, dimension = product, do not add new dimensions. Process the cube. Still looking fine? Have a look at the contents of the cube.</p>
<p><a href="http://wschampheleer.files.wordpress.com/2009/12/cube.jpg"><img src="http://wschampheleer.files.wordpress.com/2009/12/cube.jpg?w=460&#038;h=199" alt="" title="cube" width="460" height="199" class="aligncenter size-full wp-image-170" /></a><br />
Where is product_nr 2? What we learn from this is that when processing the cube, the RTRIM is applied again! but this time there is no setting to turn it off!</p>
<p>For the finale, let me show you what can go wrong (and did in my &#8216;real life&#8217; case).</p>
<p>Add an extra row to the table:</p>
<p style="padding-left:30px;">INSERT  INTO Sales (product, product_nr, price)<br />
VALUES  (&#8216;Bike&#8217; + CHAR(9) + CHAR(10) + CHAR(13), 3, 49.99)</p>
<p>Note that for this product, the variant without the special characters does not exist! Because trimming is set to none for the dimension, but trimming will occur when processing the cube, no match will be found and you will get the following error:</p>
<p style="padding-left:30px;">Server: The operation has been cancelled.<br />
Errors in the OLAP storage engine: The attribute key cannot be found when processing: Table: &#8216;dbo_Sales&#8217;, Column: &#8216;product&#8217;, Value: &#8216;Bike&#8217;. The attribute is &#8216;Product&#8217;.<br />
Errors in the OLAP storage engine: The record was skipped because the attribute key was not found. Attribute: Product of Dimension: Product from Database: Test SSAS, Cube: Sales, Measure Group: Sales, Partition: Sales, Record: 3.</p>
<p>Conclusion:<br />
If you run into this situation, you have 2 options: either you solve it in the data source view (create a named query where you remove the special characters) or remove the special characters in your ETL. I found the former to give really bad performance on large tables so my recommendation would be to do the latter.</p>
<br />Posted in Business Intelligence Tagged: Degenerate Dimension, SSAS <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wschampheleer.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wschampheleer.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wschampheleer.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wschampheleer.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wschampheleer.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wschampheleer.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wschampheleer.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wschampheleer.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wschampheleer.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wschampheleer.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wschampheleer.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wschampheleer.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wschampheleer.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wschampheleer.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=156&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wschampheleer.wordpress.com/2009/12/20/degenerate-dimensions-in-ssas/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7a78d6a1ebf0eca9ef23c6316038f18?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">wschampheleer</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/12/trim2.jpg" medium="image">
			<media:title type="html">trim</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/12/cube.jpg" medium="image">
			<media:title type="html">cube</media:title>
		</media:content>
	</item>
		<item>
		<title>SSIS Package Configurations</title>
		<link>http://wschampheleer.wordpress.com/2009/08/05/ssis-package-configurations/</link>
		<comments>http://wschampheleer.wordpress.com/2009/08/05/ssis-package-configurations/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 11:31:21 +0000</pubDate>
		<dc:creator>willem42195</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Package Configurations]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://wschampheleer.wordpress.com/?p=137</guid>
		<description><![CDATA[A quick post about two (minor) issues I ran into when defining package configurations in SQL Server. Note: I&#8217;m using SSIS 2008 but I guess they equally apply to SSIS 2005. I store all my configurations in SQL Server, which by default suggests a table called dbo.SSIS Configurations. Working on multiple projects for different clients, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=137&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A quick post about two (minor) issues I ran into when defining package configurations in SQL Server. Note: I&#8217;m using SSIS 2008 but I guess they equally apply to SSIS 2005.</p>
<p>I store all my configurations in SQL Server, which by default suggests a table called dbo.SSIS Configurations. Working on multiple projects for different clients, they all have their own preference on how to call this table and which schema to put it in. Since I have developed a template (including auditing, error logging, performance monitoring, etc.) that I want to be universally deployable, I created a synonym dbo.SSIS Configurations pointing to wherever the physical table is. This seems to be working well, but <strong>not</strong> when adding a new configuration or modifying an existing one! Suddenly BIDS starts complaining that the table is not in the format it expects it to be.</p>
<p><img class="alignnone size-full wp-image-149" title="config error" src="http://wschampheleer.files.wordpress.com/2009/08/config-error.png?w=460&#038;h=367" alt="config error" width="460" height="367" /></p>
<p>So there is no other option than to select the physical table for adding a configuration. Aftwerwards, you can edit the package in XML to use the synonym and it will work. If you want to change the configuration, you either have to delete and recreate it or change the XML directly. Because this is a template, this approach is acceptable. The template itself doesn&#8217;t change very often. And when using the template in a development project, the location of the physical table is known (and fixed) and there is no need for the synonym anymore.</p>
<p>As a sidenote: when copying the template package, BIDS 2008 automatically changes the ID of the package. Unfortunately this is still not true for the indiviudal components in the package.</p>
<p>The second issue comes forth from a long connection string. When trying to add a a configuration for a ConnectionString, I got the following <strong>very clear</strong> error message: </p>
<p><img class="alignnone size-full wp-image-151" title="connection string" src="http://wschampheleer.files.wordpress.com/2009/08/connection-string.png?w=459&#038;h=387" alt="connection string" width="459" height="387" /></p>
<p>The actual problem is that the ConfiguredValue is longer than the 255 characters that are foreseen in the table. This is (partially) caused by the fact that BIDS adds a very long Application Name attribute to the ConnectionString. I solved this issue by first saving the configuration to an XML file. I copied the ConnectionString and manually created a record in the SSISConfigurations table with a shortened Application Name. Then in BIDS  I added the configuration (from SQL Server) by selecting the ConfigurationFilter I just created and choosing &#8216;Reuse Existing&#8217;.</p>
<p>Probably making the size of the column larger would have worked as well although I&#8217;m not 100% sure there won&#8217;t be any side effects. Since in my case, shortening the ConnectionString was easy to do, I preferred to stay on the safe side.</p>
<br />Posted in Business Intelligence Tagged: Package Configurations, SSIS <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wschampheleer.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wschampheleer.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wschampheleer.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wschampheleer.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wschampheleer.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wschampheleer.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wschampheleer.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wschampheleer.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wschampheleer.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wschampheleer.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wschampheleer.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wschampheleer.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wschampheleer.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wschampheleer.wordpress.com/137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=137&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wschampheleer.wordpress.com/2009/08/05/ssis-package-configurations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7a78d6a1ebf0eca9ef23c6316038f18?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">wschampheleer</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/08/config-error.png" medium="image">
			<media:title type="html">config error</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/08/connection-string.png" medium="image">
			<media:title type="html">connection string</media:title>
		</media:content>
	</item>
		<item>
		<title>A custom report catalog for SAP NetWeaver BI</title>
		<link>http://wschampheleer.wordpress.com/2009/06/03/a-custom-report-catalog-for-sap-netweaver-bi/</link>
		<comments>http://wschampheleer.wordpress.com/2009/06/03/a-custom-report-catalog-for-sap-netweaver-bi/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 13:22:45 +0000</pubDate>
		<dc:creator>willem42195</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Metadata]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://wschampheleer.wordpress.com/?p=115</guid>
		<description><![CDATA[In this post I will describe how we developed a custom catalog of SAP BI reports for one of our projects. The purpose was to leverage the BW Metadata Repository and turn it into a central instrument that &#8211; at the same time &#8211; can be used by the business and is useful for IT. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=115&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this post I will describe how we developed a custom catalog of SAP BI reports for one of our projects. The purpose was to leverage the BW Metadata Repository and turn it into a central instrument that &#8211; at the same time &#8211; can be used by the business and is useful for IT.</p>
<p><strong>The business part</strong></p>
<p>The catalog lists all the reports in our production environment. For each report, it contains among other things a short description, a link to the full documentation set, a pointer to where the report can be found in the SAP portal and the name of the business owner.</p>
<p>The whole idea is to increase the level of self-service by the business and maximize the use of existing reports. When a user is looking for specific information, the short description allows him to identify potential helpful reports. From there, the user can browse through the documentation, try the report (provided he has access) or seek assistance from the business owner.</p>
<p><strong>The IT part</strong></p>
<p>The catalog also contains more technical information. For each report, it lists the web template, the query name and technical name (more than 1 possible per template!), the infoprovider type and the infoprovider’s name and technical name. We have also added several descriptive attributes (i.e. hierarchies) like e.g. the data source(s) used.</p>
<p>Since we have a large number of reports and we obviously intend to keep the list up to date, we wanted to collect as much information as possible in an automated way.</p>
<p>Our first idea was to export the metadata repository (transaction RSOR). The program RSO_REPOSITORY_EXCHANGE_XML seemed ideal for that. To execute it, run transaction se38, enter RSO_REPOSITORY_EXCHANGE_XML as the program name and press F8.</p>
<p><img class="alignnone size-full wp-image-113" title="i01" src="http://wschampheleer.files.wordpress.com/2009/06/i01.png?w=460&#038;h=377" alt="i01" width="460" height="377" /></p>
<p>We got the best results by clicking on the “All Object with Details” button.</p>
<p><img class="alignnone size-full wp-image-114" title="i02" src="http://wschampheleer.files.wordpress.com/2009/06/i02.png?w=460&#038;h=683" alt="i02" width="460" height="683" /></p>
<p>After you have provided a location (directory) for the output, lots of files will be created.</p>
<p><img class="alignnone size-full wp-image-118" title="i03" src="http://wschampheleer.files.wordpress.com/2009/06/i03.png?w=459&#038;h=255" alt="i03" width="459" height="255" /></p>
<p>Although we found some of these files quite interesting, we believe that some fundamental information is missing in order to link the different objects (template-query-infoprovider) to each other.</p>
<p>So we started down another path, this time using transaction se11. Below I will list all the tables for which we ran this transaction. Enter the name of each table after the “Database table” prompt and click Display.</p>
<p><img class="alignnone size-full wp-image-119" title="i04" src="http://wschampheleer.files.wordpress.com/2009/06/i04.png?w=433&#038;h=464" alt="i04" width="433" height="464" /></p>
<p>Next, press CTRL+SHIFT+F10 (Contents).</p>
<p><img class="alignnone size-full wp-image-120" title="i05" src="http://wschampheleer.files.wordpress.com/2009/06/i05.png?w=460&#038;h=286" alt="i05" width="460" height="286" /></p>
<p>Clear the last 2 input boxes (Width of Output List and Maximum No. of Hits) to make sure you receive all information. Then press F8 (Execute).</p>
<p><img class="alignnone size-full wp-image-121" title="i06" src="http://wschampheleer.files.wordpress.com/2009/06/i06.png?w=460&#038;h=283" alt="i06" width="460" height="283" /></p>
<p>Click Settings – User Parameters</p>
<p><img class="alignnone size-full wp-image-122" title="i07" src="http://wschampheleer.files.wordpress.com/2009/06/i07.png?w=459&#038;h=444" alt="i07" width="459" height="444" /></p>
<p>and on the Data Browser Tab, select ALV Grid display.</p>
<p><img class="alignnone size-full wp-image-123" title="i08" src="http://wschampheleer.files.wordpress.com/2009/06/i08.png?w=460&#038;h=462" alt="i08" width="460" height="462" /></p>
<p>Then press CTRL+SHIFT+F7 (Table Entry, List, Export, Spreadsheet).</p>
<p><img class="alignnone size-full wp-image-124" title="i09" src="http://wschampheleer.files.wordpress.com/2009/06/i09.png?w=459&#038;h=225" alt="i09" width="459" height="225" /></p>
<p>For the format, choose All available Formats and then Excel (in Office 2003 XML Format). We tried other formats, but had best results with this one. You will notice that the files can get pretty big. However, if you open them in Excel 2007 and then save them in Excel’s most recent format, they will shrink substantially.</p>
<p><img class="alignnone size-full wp-image-125" title="i10" src="http://wschampheleer.files.wordpress.com/2009/06/i10.png?w=354&#038;h=258" alt="i10" width="354" height="258" /></p>
<p>Once you have exported all tables listed below in this way, the last step is to link them all together. You can do this using your favorite database or if you don’t have one at hand, just use Excel (try VLOOKUP).</p>
<p>Get OBJID as <em>Web Template</em> from <strong>RSZWBTMPXREF</strong> T1<br />
Get COMPID as <em>Query Technical name</em> from <strong>RSRREPDIR</strong> T2 on T1.OBJNM = T2.COMPUID<br />
Get TXTLG as <em>Query name</em> from <strong>RSZELTTXT</strong> T3 on T1.OBJNM = T3.ELTUID<br />
Get INFOCUBE as <em>Infoprovider Technical name</em> from <strong>RSRREPDIR</strong> T2 on T1.OBJNM = T2.COMPUID<br />
Get TXTLG as <em>Infoprovider name</em> from <strong>RSDCUBET</strong> T4 on T2.INFOCUBE = T4.INFOCUBE<br />
Get CUBETYPE as <em>Infoprovider type</em> from <strong>RSDCUBE</strong> T5 on T2.INFOCUBE = T5.INFOCUBE</p>
<p>If you know your way around in SAP and have the necessary privileges you may consider creating a view directly in SAP that does all this for you automatically.</p>
<p>The one part that is missing in this overview is the link to the portal. Since the portal uses its own schema (which can be in a different database), we decided to leave this part out for the first iteration. So currently this information is still filled in by hand. If we ever get to add this last bit, I will post a new article about it.</p>
<br />Posted in Business Intelligence Tagged: Business Intelligence, Metadata, SAP <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wschampheleer.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wschampheleer.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wschampheleer.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wschampheleer.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wschampheleer.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wschampheleer.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wschampheleer.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wschampheleer.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wschampheleer.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wschampheleer.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wschampheleer.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wschampheleer.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wschampheleer.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wschampheleer.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=115&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wschampheleer.wordpress.com/2009/06/03/a-custom-report-catalog-for-sap-netweaver-bi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7a78d6a1ebf0eca9ef23c6316038f18?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">wschampheleer</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i01.png" medium="image">
			<media:title type="html">i01</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i02.png" medium="image">
			<media:title type="html">i02</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i03.png" medium="image">
			<media:title type="html">i03</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i04.png" medium="image">
			<media:title type="html">i04</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i05.png" medium="image">
			<media:title type="html">i05</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i06.png" medium="image">
			<media:title type="html">i06</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i07.png" medium="image">
			<media:title type="html">i07</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i08.png" medium="image">
			<media:title type="html">i08</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i09.png" medium="image">
			<media:title type="html">i09</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/06/i10.png" medium="image">
			<media:title type="html">i10</media:title>
		</media:content>
	</item>
		<item>
		<title>Comparing apples to oranges</title>
		<link>http://wschampheleer.wordpress.com/2009/05/11/comparing-apples-to-oranges/</link>
		<comments>http://wschampheleer.wordpress.com/2009/05/11/comparing-apples-to-oranges/#comments</comments>
		<pubDate>Mon, 11 May 2009 13:24:50 +0000</pubDate>
		<dc:creator>willem42195</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>

		<guid isPermaLink="false">http://wschampheleer.wordpress.com/?p=107</guid>
		<description><![CDATA[Setting: requirements gathering meeting. User: (firm) My data cannot be aggregated. Analyst: Cannot or should not? User: (puzzled) Cannot. Analyst: Why not? User: Because you cannot compare apples to oranges. Analyst: No? Why can’t you compare their weight, volume, taste etc.? User: Hmm. (thinking) OK, but you cannot add them. Analyst: Well, in a way [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=107&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>Setting: requirements gathering meeting.</em></p>
<p><strong>User:</strong> (<em>firm</em>) My data cannot be aggregated.</p>
<p><strong>Analyst:</strong> Cannot or should not?</p>
<p><strong>User:</strong> (<em>puzzled</em>) Cannot.</p>
<p><strong>Analyst:</strong> Why not?</p>
<p><strong>User:</strong> Because you cannot compare apples to oranges.</p>
<p><strong>Analyst:</strong> No? Why can’t you compare their weight, volume, taste etc.?</p>
<p><strong>User:</strong> Hmm. (<em>thinking</em>) OK, but you cannot add them.</p>
<p><strong>Analyst:</strong> Well, in a way you can: 5 apples and 3 oranges are 8 pieces of fruit.</p>
<p><strong>User:</strong> Hmm. (<em>thinking</em>) Maybe you’re right. (<em>enthusiastic</em>) That would give me some of those key figures I have to report every month. Never thought I would be able to get that information from the data warehouse. Now, can we define the rules when (not) to aggregate data and what aggregations to apply?</p>
<p><strong>Analyst:</strong> Yes we can!</p>
<br />Posted in Business Intelligence Tagged: Business Intelligence <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wschampheleer.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wschampheleer.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wschampheleer.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wschampheleer.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wschampheleer.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wschampheleer.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wschampheleer.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wschampheleer.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wschampheleer.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wschampheleer.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wschampheleer.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wschampheleer.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wschampheleer.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wschampheleer.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=107&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wschampheleer.wordpress.com/2009/05/11/comparing-apples-to-oranges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7a78d6a1ebf0eca9ef23c6316038f18?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">wschampheleer</media:title>
		</media:content>
	</item>
		<item>
		<title>When things go wrong</title>
		<link>http://wschampheleer.wordpress.com/2009/05/04/when-things-go-wrong/</link>
		<comments>http://wschampheleer.wordpress.com/2009/05/04/when-things-go-wrong/#comments</comments>
		<pubDate>Mon, 04 May 2009 13:45:27 +0000</pubDate>
		<dc:creator>willem42195</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[bi-and-the-economic-crisis]]></category>
		<category><![CDATA[Business IT Alignment]]></category>

		<guid isPermaLink="false">http://wschampheleer.wordpress.com/?p=38</guid>
		<description><![CDATA[This article has been triggered by some recent posts on the role of IT. See for example Peter Thomas’s The scope of IT’s responsibility when businesses go bad or Jill Dyché’s Dear IT: A Letter from Your Business Users. Let me jump immediately to my conclusion: the success of any business intelligence initiative is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=38&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This article has been triggered by some recent posts on the role of IT. See for example Peter Thomas’s <a title="The scope of IT’s responsibility when businesses go bad" href="http://peterthomas.wordpress.com/2009/04/27/the-scope-of-its-responsibility-when-businesses-go-bad/" target="_blank">The scope of IT’s responsibility when businesses go bad</a> or Jill Dyché’s <a title="Dear IT: A Letter from Your Business Users" href="http://www.jilldyche.com/2009/04/dear-it-a-letter-from-your-business-users.html" target="_blank">Dear IT: A Letter from Your Business Users</a>.</p>
<p>Let me jump immediately to my conclusion: the success of any business intelligence initiative is a <strong>shared</strong> responsibility.</p>
<p>In Competing on Analytics, Tom Davenport writes <em>the best information and analytics aren’t very useful unless good decisions are made and the right actions taken</em>.</p>
<p>While it is IT’s job to make sure that the business has everything at its disposal to make the right decisions, it is not IT’s task to run the business.</p>
<p>If you know a little about statistics or game theory, chances are (pun intended) that you do not engage in gambling. Yet, so many people do. The same is true in business.</p>
<p>There can be many reasons why business men and women deliberately choose to ignore factual information and follow their instincts:</p>
<ul>
<li>they have been successful before and started to believe they are unbeatable</li>
<li>the incentive is so big that they simply want to try their luck</li>
<li>they fear they will no longer be around when credit is given for the hard work they have to do now, whereas for the same reason it will be too late to hold them accountable for their negligence</li>
</ul>
<p>As IT you may have access to someone with more power than the offender (either an executive in your organization or an external actor like e.g. a regulator) and prevent disaster from happening. But sometimes you don’t or you are not prepared to pay the price for blowing the whistle. In that case, the business intelligence initiative will fail. Is it IT’s responsibility? Maybe, but no more than 50%. You can lead a horse to water, but you cannot make it drink.</p>
<hr />
<p><a title="Tweet article" href="http://twitter.com/home/?status=RT+%40wschampheleer+'When things go wrong'+by+Willem+Schampheleer:+http://bit.ly/g9zZ6" target="_blank">Tweet</a> about this article on <a href="http://twitter.com/home/?status=RT+%40wschampheleer+'When things go wrong'+by+Willem+Schampheleer:+http://bit.ly/g9zZ6"><img class="alignnone size-full wp-image-78" title="twitter_logo" src="http://wschampheleer.files.wordpress.com/2009/05/twitter_logo.png?w=78&#038;h=18" alt="twitter_logo" width="78" height="18" /></a></p>
<br />Posted in Business Intelligence Tagged: bi-and-the-economic-crisis, Business Intelligence, Business IT Alignment <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wschampheleer.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wschampheleer.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wschampheleer.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wschampheleer.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wschampheleer.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wschampheleer.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wschampheleer.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wschampheleer.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wschampheleer.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wschampheleer.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wschampheleer.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wschampheleer.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wschampheleer.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wschampheleer.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=38&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wschampheleer.wordpress.com/2009/05/04/when-things-go-wrong/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7a78d6a1ebf0eca9ef23c6316038f18?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">wschampheleer</media:title>
		</media:content>

		<media:content url="http://wschampheleer.files.wordpress.com/2009/05/twitter_logo.png" medium="image">
			<media:title type="html">twitter_logo</media:title>
		</media:content>
	</item>
		<item>
		<title>To contribute or not to contribute</title>
		<link>http://wschampheleer.wordpress.com/2009/04/27/to-contribute-or-not-to-contribute/</link>
		<comments>http://wschampheleer.wordpress.com/2009/04/27/to-contribute-or-not-to-contribute/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 10:20:10 +0000</pubDate>
		<dc:creator>willem42195</dc:creator>
				<category><![CDATA[Social networks]]></category>
		<category><![CDATA[Twibes]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://wschampheleer.wordpress.com/?p=25</guid>
		<description><![CDATA[What a week! Less than a month ago I didn’t have blog, I didn’t care about Twitter (I hadn’t even tried it) and &#8211; as far as I know – Twibe groups didn’t exist yet. And now, in exactly one week, I’m writing my second blog post, more than 165 people (and still counting!) have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=25&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What a week!</p>
<p class="MsoNormal">Less than a month ago I didn’t have blog, I didn’t care about Twitter (I hadn’t even tried it) and &#8211; as far as I know – Twibe groups didn’t exist yet.</p>
<p>And now, in exactly one week, I’m writing my second blog post, more than 165 people (and still counting!) have registered with the <a title="BusinessIntelligence Twibe" href="http://www.twibes.com/group/BusinessIntelligence" target="_blank">BusinessIntelligence Twibe</a> and it’s hard to think of something for which there is no Twibe group yet.</p>
<p class="MsoNormal">Agreed, Twibes is not that stable yet and some people seem to struggle to make it work so it can improve on user-friendliness. But the Twibes team is very responsive (thank you Adam &amp; C°!) and they are adding great features all the time.</p>
<p class="MsoNormal">A feature that I’m really looking forward to is the possibility to tweet directly from the Twibe. In the first week, only 5 persons or so actually actively participated by publishing content in the <a title="BusinessIntelligence Twibe" href="http://www.twibes.com/group/BusinessIntelligence" target="_blank">BusinessIntelligence Twibe</a>. My hope is that this new feature will have a positive impact and get more people involved.</p>
<p class="MsoNormal">In <a title="17 Things we Used to Do" href="http://andrewmcafee.org/blog/?p=749" target="_blank">17 Things we Used to Do</a> Andrew McAfee wrote:</p>
<p class="MsoNormal"><em>I perceive myself to be part of a single network of friends on Facebook, but I’m part of two very different networks on Twitter: the people I follow (I select these people because I want to get information from them), and those who follow me (these people select me because they want to get information from me).</em></p>
<p class="MsoNormal">Sure, people can be part of both networks (you follow them and they follow you), but often they’re not. Likewise, in the Twibe group there will be members that join only with the intention of “listening” and not being “heard” – a position they can of course change at any time.</p>
<p class="MsoNormal">But since you don’t have to be a member of the Twibe group to see its content, it makes me wonder what their incentive is to join?</p>
<p class="MsoNormal">Personally, I believe it is about being part of a group and having something in common (after all we call them <strong>social networks</strong>). It also clearly relates to the last two use cases that Andrew described:<span> </span><em>Finding information on topics of interest</em> and <em>Finding people who share an interest</em>.</p>
<p class="MsoNormal">I’m curious to hear what you think about it. Please leave a comment below.</p>
<br />Posted in Social networks Tagged: Twibes, Twitter <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wschampheleer.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wschampheleer.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wschampheleer.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wschampheleer.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wschampheleer.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wschampheleer.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wschampheleer.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wschampheleer.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wschampheleer.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wschampheleer.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wschampheleer.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wschampheleer.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wschampheleer.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wschampheleer.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=25&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wschampheleer.wordpress.com/2009/04/27/to-contribute-or-not-to-contribute/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7a78d6a1ebf0eca9ef23c6316038f18?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">wschampheleer</media:title>
		</media:content>
	</item>
		<item>
		<title>On Twitter and Twibes</title>
		<link>http://wschampheleer.wordpress.com/2009/04/17/on-twitter-and-twibes/</link>
		<comments>http://wschampheleer.wordpress.com/2009/04/17/on-twitter-and-twibes/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 19:31:07 +0000</pubDate>
		<dc:creator>willem42195</dc:creator>
				<category><![CDATA[Social networks]]></category>
		<category><![CDATA[Twibes]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://wschampheleer.wordpress.com/?p=3</guid>
		<description><![CDATA[Recently I discovered Twibe groups. It was love at first sight and I decided to immediately create a group about my passion: Business Intelligence (http://www.twibes.com/BusinessIntelligence). What is it that I like so much about the concept? While I do recognize that chitchatting is inherent to Twitter and part of its charm for many users, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=3&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I discovered Twibe groups. It was love at first sight and I decided to immediately create a group about my passion: Business Intelligence (<a title="http://www.twibes.com/BusinessIntelligence" href="http://www.twibes.com/BusinessIntelligence" target="_blank">http://www.twibes.com/BusinessIntelligence</a>).</p>
<p>What is it that I like so much about the concept?</p>
<p>While I do recognize that chitchatting is inherent to Twitter and part of its charm for many users, the reason why I’m on Twitter is purely professional. I use Twitter to unload my mailbox and get rid of all those newsletters and other marketing messages that I don’t read anyway. I prefer the short tweets and people’s personal comments. Mip described this very nicely in his post <a title="&quot;How I Became a Twitter Convert&quot;" href="http://bit.ly/18NEmp" target="_blank">“How I Became a Twitter Convert”</a>.</p>
<p>But, since people (luckily!) have many interests and a life next to work, I often have to wade through a lot of tweets that are of little interest to me to find those that are relevant to my area of expertise. Jeremiah Owyang predicts even worse in his post <a title="“What Happens When Twitter Gets Mainstream Attention”" href="http://bit.ly/FIXjc" target="_blank">“What Happens When Twitter Gets Mainstream Attention”</a>.</p>
<p>This is where I believe Twibe groups come to the rescue. All members of the group share a single (1) interest – in this case Business Intelligence. Twibes scans all tweets from members of the group for those that match any of up to 3 tags (which the group can freely define).</p>
<p>Sometimes, less is more. My idea of the Twibe group is like a Reader’s Digest: you only get to see tweets that are relevant to the group without you having to track down people and following them individually. The group is a powerful medium for content providers to reach a large and attentive audience. The win for the information consumers is efficiency: they get lots of needles and only little hay.</p>
<p>Rules of engagement for the BusinessIntelligence Twibe group:</p>
<ul>
<li>to make your tweet show up in the group, tag it with <strong>bitwibe </strong>(if you prefer #bitwibe, that will work too)</li>
<li>only tag tweets that are directly related to BI (defined in its largest sense)</li>
<li>if you retweet something that was already tagged, <strong>remove </strong>the bitwibe tag unless you add a personal comment that is interesting for the group</li>
<li><strong>no spam</strong> (this includes commercial messages and information about seminars, trainings and webinars)</li>
<li>the group is international so tweet in English and about topics of general interest</li>
</ul>
<p>If you have any suggestions or would like to share what you expect from the group, then please enter your comments below.</p>
<br />Posted in Social networks Tagged: Twibes, Twitter <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wschampheleer.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wschampheleer.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wschampheleer.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wschampheleer.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wschampheleer.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wschampheleer.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wschampheleer.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wschampheleer.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wschampheleer.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wschampheleer.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wschampheleer.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wschampheleer.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wschampheleer.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wschampheleer.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wschampheleer.wordpress.com&amp;blog=7399951&amp;post=3&amp;subd=wschampheleer&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wschampheleer.wordpress.com/2009/04/17/on-twitter-and-twibes/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a7a78d6a1ebf0eca9ef23c6316038f18?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">wschampheleer</media:title>
		</media:content>
	</item>
	</channel>
</rss>
