<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>Business Intelligence (BI) - ERP - Dashboards</title>
	<link>http://www.infopurple.com</link>
	<description>Free articles, tutorials, forums, Oracle Apps, BI and Dashboards</description>
	<pubDate>Tue, 05 Aug 2008 02:38:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>Data Conversion for Oracle Applications</title>
		<link>http://www.infopurple.com/data-conversion-for-oracle-applications</link>
		<comments>http://www.infopurple.com/data-conversion-for-oracle-applications#comments</comments>
		<pubDate>Fri, 11 Jul 2008 15:37:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ERP]]></category>

		<category><![CDATA[Interview Questions(&amp; answers)]]></category>

		<category><![CDATA[Oracle Apps]]></category>

		<category><![CDATA[AIM Methodology]]></category>

		<category><![CDATA[Data Conversion]]></category>

		<category><![CDATA[Interview QA]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/data-conversion-for-oracle-applications</guid>
		<description><![CDATA[Data Conversion for Oracle Applications
This topic is shared to provide an overview of Data Conversion for Oracle ERP.
Approach used for Data Conversion

1. Conversion Data Mapping ( map to specify the data of legacy system &#8211;&#62; data of oracle ERP system )The data mapping process provides detailed lists of the data sets and data elements that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Data Conversion for Oracle Applications</strong></p>
<p><em>This topic is shared to provide an overview of Data Conversion for Oracle <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">ERP</a>.</em></p>
<p><strong>Approach used for Data Conversion</strong></p>
<p>
<strong>1. Conversion Data Mapping ( map to specify the data of legacy system &#8211;&gt; data of oracle ERP system )<br /></strong>The data mapping process provides detailed lists of the data sets and data elements that will need to be moved into the Oracle <a href="http://www.appsbi.com/key-erp-tables/"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">ERP tables</a> during the data conversion.</p>
<p>During this process, some decisions will need to be made with regard to obtaining information needed by the target application that may not be present in the old system(Legacy System ). <em>Decisions like</em> -&gt;&gt;Default settings, user input, and new data entries are some of the issues that must be addressed during this phase.<br />
The output of this activity is data mapping tables that show what is needed for the Oracle target application processing to meet business operational requirements and where these data elements will come from. Based on this mapping, a design of the legacy data extract is defined.</p>
<p><strong>2. Download Programs ( programs to extract data from database and insert into the Flat file )<br /></strong>These programs are used to extract the identified conversion data elements from the current systems in the form of an ASCII flat file. This can be done with a 3rd party tool or programmatically done within the lagacy database systems.carefull planning must be done before the flat file created as the data can be placed in the order its extracted , type of delimeter used( either ,(comma) or | (pipe) or anything other, number of records, etc.</p>
<p><strong>3. ASCII Flat File (Flat file / Text file)</strong><br />
Most database or file systems output data in text form. A comma or space delimited, variable or fixed format data file from the existing system should be generated. If you cannot find a way to produce clean text data, try generating a report to disk, using a text editor to format your data.<br />
One of the outputs of conversion data mapping is to identify the legacy data element data types and precision(example decimals and dates specifics).</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img style="WIDTH: 533px; HEIGHT: 414px" height="414" alt="Data Conversion" src="http://www.infopurple.com/wp-content/uploads/2008/07/dataconversion.jpg" width="450" /></p>
<p>Once the conversion data mapping is done, you should know if there are inconsistencies between the legacy data types and the requirements for the Oracle data types. If there are translations that need to take place, these translations can be performed on the legacy system prior to creating the extract or in an interface table. Also, if you are creating a fixed length extract file, you need to take into account the precision level of decimal numbers.</p>
<p>
<strong>4. Upload Program<br /></strong>Once data has been put into an ASCII EBCDIC flat file and physically moved onto the same computer that has the Oracle RDBMS, the next step is to load the data into a relational database environment.<br />
Programs must be written and run to move data, validate data, and insert/update standard values into default fields. Usually a single loader program is written for each data table being loaded.</p>
<p>
<strong>5.Interface Tables ( <a href="http://www.infopurple.com/interfaces-types-of-interfaces-open-interface-custom-interface" target="_blank">know more about Interface tables here )</a></strong></p>
<p><strong>a. Description of Interface Table<br /></strong>The detailed technical description of any interface table that the data is placed into from the ASCII flat file is prepared. An interface table that mimics the production table into which the data will eventually be loaded into should be defined. This allows you to manipulate the data as needed before loading the legacy data into the production tables.</p>
<p><strong>b. Creation of Interface Table<br /></strong>Before loading the Oracle Application production tables, the legacy data should first be loaded into temporary or interface tables. The interface tables provide a location for you to manipulate and translate the data as needed before validating the data and loading the application production tables. These temporary interface tables need to be built before you run the loader script to populate these tables. The interface tables may be standard Oracle Application interface tables or may be custom interface tables.</p>
<p><strong>6. Translation Programs</strong><br />
These scripts are developed to translate data from the existing system format into useful data for the Oracle target application. An example of this might be taking the date format that exists in the legacy system and converting it into an Oracle format. There may be several or no translation programs, depending on both the type of data coming across and the format of that data.</p>
<p><strong>7. Interface Programs ( <a href="http://www.infopurple.com/interface-utl_file-sqlloader-oracle-general-ledger" target="_blank">example</a> )</strong><br />
The interface program scripts are used to populate the production database. The purpose of the interface programs is not only to move the data to the target tables but also to validate the data that would be validated by the form in the target application if the data was converted manually.</p>
<p><strong>8. Application Production Table<br /></strong>This is the final production data table where the converted data resides. These tables are identified early on when doing the initial data mapping. These tables drive some of the translation programs that must ultimately ensure that 100% of the information that the target applications require is present in the final data structures.</p>
<p><strong>9. Testing</strong><br />
This test plan has been integrated into the entire conversion process so that, even during the pre-conversion steps, some type of validation reports are generated from the legacy systems, to be compared later with the converted data.<br />
The approach taken is to use as many standard reports as possible that are available in the legacy and target system for the final data validation. If no reports support the validation requirements, then custom scripts will need to be created for specific validation purposes.</p>
<p><strong>10. Write and Perform Conversion Execution Plan<br /></strong>The conversion execution plan is the execution document that is to be followed when performing the actual conversion. This document is specifically tailored for the &lt;Company Short Name&gt; conversion.</p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 2);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/data-conversion-for-oracle-applications/feed</wfw:commentRss>
		</item>
		<item>
		<title>Types of business intelligence tools</title>
		<link>http://www.infopurple.com/types-of-business-intelligence-tools</link>
		<comments>http://www.infopurple.com/types-of-business-intelligence-tools#comments</comments>
		<pubDate>Mon, 07 Jul 2008 15:47:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[DataWarehousing]]></category>

		<category><![CDATA[Interesting]]></category>

		<category><![CDATA[Interview Questions(&amp; answers)]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/types-of-business-intelligence-tools</guid>
		<description><![CDATA[I hope this will help the BI practiser to evaluate the tools used at different process and the available tools.
Types of business intelligence toolsThe general categories of business intelligence tools are:
  1.Spreadsheets[1]


Lotus 1-2-3
Microsoft Excel
Apple Numbers
OpenOffice.org
more 


  2.Reporting and querying software - are tools that extract, sort,   summarize, and present selected data [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I hope this will help the BI practiser to evaluate the tools used at different process and the available tools.</strong></p>
<p><font color="aqua"><font style="BACKGROUND-COLOR: #400040"><strong>Types of <a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> tools</strong><br /></font></font>The general categories of <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> tools are:</p>
<p><strong><font color="#8000FF">  1.Spreadsheets[1]</font></strong></p>
<div style="margin-left: 4em">
<ol>
<li>Lotus 1-2-3</li>
<li>Microsoft Excel</li>
<li>Apple Numbers</li>
<li>OpenOffice.org</li>
<li><a href="http://en.wikipedia.org/wiki/Spreadsheets" target="_blank">more </a></li>
</ol>
</div>
<p><strong>  <font color="#8000FF">2.Reporting and querying software</font></strong> - are tools that extract, sort,   summarize, and present selected data (</p>
<blockquote>
<blockquote>
<p><strong>Open source software</strong> </p>
<ul>
<li>Eclipse BIRT</li>
<li>Agata</li>
<li>ReportProject</li>
<li>JasperReports</li>
<li>Pentaho</li>
<li>GNU_Enterprise (reporting sub-package)  Etc&#8230;</li>
</ul>
<p> <strong>Commercial software</strong></p>
<ul>
<li><a href="http://www.infocaptor.com/" target="_blank">Infocaptor</a></li>
<li>Alchemex</li>
<li>Actuate</li>
<li>Cognos BI</li>
<li>Crystal Reports</li>
<li>InetSoft(InetSoft Style Report)</li>
<li>Information Builders</li>
<li>FOCUS and WebFOCUS</li>
<li>LogiXML</li>
<li>Microstrategy</li>
<li>Oracle XML Publisher (now known as &#8216;BI Publisher&#8217; )</li>
<li>Business Objects</li>
<li>Telerik Reporting</li>
<li>SQL Server Reporting Services</li>
<li>Proclarity</li>
<li>RepGen.Net              Etc&#8230;</li>
</ul>
</blockquote>
</blockquote>
<p><strong>  <font color="#8000FF">3. OLAP</font></strong></p>
<p>There are many vendors providing OLAP tools</p>
<div dir="ltr" style="margin-left: 6em; MARGIN-RIGHT: 0px">
<ul>
<li>Microsoft Corporation</li>
<li>Hyperion Solutions Corporation</li>
<li>Cognos</li>
<li>Business Objects</li>
<li>MicroStrategy</li>
<li>SAP AG</li>
<li>Cartesis SA</li>
<li>Applix</li>
<li>Infor</li>
<li>Oracle Corporation     Etc&#8230;</li>
</ul>
</div>
<p>  <strong><font color="#8000FF">4.Digital <a href="http://www.infocaptor.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Dashboards</a></font></strong></p>
<p>here I can recommend one very easy and powerful <a href="http://www.dashboardzone.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Dashboard</a> tool called <a href="http://www.infocaptor.com/" target="_blank">Infocaptor </a> .I keep recomending this because its having all of the same power features of reporting and Dashboards tool as any other top (read expensive) tools .</p>
<p><strong>   <font color="#8000FF">5.Data mining</font></strong></p>
<div dir="ltr" style="margin-left: 4em; MARGIN-RIGHT: 0px">
<ul>
<li>DataCruncher (from DataMind)</li>
<li>PRW</li>
<li>OLPARS</li>
<li>Intelligent Miner ( from IBM )</li>
<li>Scenario(from Cognos )<br />
Etc&#8230;</li>
</ul>
</div>
<p><strong>   <font color="#8000FF">6.Process mining</font></strong></p>
<p>A software framework for the evaluation of process mining algorithms has been developed at the Technical University of Eindhoven and is available as an open source toolkit.</p>
<div dir="ltr" style="margin-left: 4em; MARGIN-RIGHT: 0px">
<ul>
<li>Process Mining</li>
<li>Prom Framework</li>
<li>Prom Import Framework<br />
Etc&#8230;</li>
</ul>
</div>
<p><strong><font color="#8000FF">   7 .Business performance management</font></strong></p>
<p>what is <strong>BPM</strong> ?</p>
<p>Business performance management (BPM) (or Corporate performance management, Enterprise performance management, Operational performance management) is a set of processes that help organizations optimize their business performance. It is a framework for organizing, automating and analyzing business methodologies, metrics, processes and systems that drive business performance.</p>
<p>BPM is seen as the next generation of business intelligence (BI). BPM helps businesses make efficient use of their financial, human, material and other resources
 </p>
<p>read more related topics at <a href="http://en.wikipedia.org/wiki/">http://en.wikipedia.org/wiki/</a></p>
<p>please comment and let me know if you liked this article.</p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/types-of-business-intelligence-tools/feed</wfw:commentRss>
		</item>
		<item>
		<title>ERP tables - WF (Work Flow)</title>
		<link>http://www.infopurple.com/erp-tables-wf-work-flow</link>
		<comments>http://www.infopurple.com/erp-tables-wf-work-flow#comments</comments>
		<pubDate>Thu, 03 Jul 2008 12:47:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[11i]]></category>

		<category><![CDATA[ERP]]></category>

		<category><![CDATA[Glossary]]></category>

		<category><![CDATA[Interview Questions(&amp; answers)]]></category>

		<category><![CDATA[Oracle Apps]]></category>

		<category><![CDATA[ERP Tables]]></category>

		<category><![CDATA[Interview Questions and Answers]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/erp-tables-wf-work-flow</guid>
		<description><![CDATA[ERP tables - WF (Work Flow)
brief ( and important  ) details of WorkFlow tables.
lets first learn some definations.
A process activity is a modelled workflow process, which can be included as an activity in
other processes to represent a sub–process.
A notification activity sends a message to a performer.
A functions activity performs an automated function that is [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">ERP</a> tables - WF (Work Flow)</strong></p>
<p>brief ( and important <img src='http://www.infopurple.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ) details of WorkFlow tables.</p>
<p>lets first learn some definations.</p>
<p><font color="#8000FF">A <strong>process</strong> activity is a modelled workflow process, which can be included as an activity in<br />
other processes to represent a sub–process.<br /></font><br />
<font color="#8000FF">A <strong>notification</strong> activity sends a message to a performer.</p>
<p>A <strong>functions</strong> activity performs an automated function that is written as a PL/SQL stored procedure.</p>
<p>A <strong>folder</strong> activity is not part of a process,it provides a means of grouping activities.</font></p>
<p>below is the most important tables for Work Flow module.</p>
<p><strong><u>WF_ACTIVITIES</u></strong> stores the definition of an activity.<br />
Activities can be processes, notifications, functions or folders.<br />
<strong><br />
WF_ITEMS</strong> is the runtime table for workflow processes<br />
Each row defines one work item within the system.</p>
<p><strong><u>WF_ITEM_ATTRIBUTES</u></strong> table stores definitions of attributes associated with a process.<br />
Each row includes the sequence in which the attribute is used as well as the format of the attribute data.</p>
<p><strong><u>WF_NOTIFICATIONS</u></strong> holds the runtime information about a specific instance of a sent message.<br />
A new row is created in the table each time a message is sent.</p>
<p>
find more such Quick info about <a href="http://www.appsbi.com/key-erp-tables/"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">ERP tables</a> at <a href="http://www.appsbi.com/">http://www.appsbi.com/</a></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/erp-tables-wf-work-flow/feed</wfw:commentRss>
		</item>
		<item>
		<title>Why Build a Data Warehouse?</title>
		<link>http://www.infopurple.com/why-build-a-data-warehouse</link>
		<comments>http://www.infopurple.com/why-build-a-data-warehouse#comments</comments>
		<pubDate>Thu, 03 Jul 2008 00:40:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[DataWarehousing]]></category>

		<category><![CDATA[Interview Questions(&amp; answers)]]></category>

		<category><![CDATA[Business Inteligence]]></category>

		<category><![CDATA[Data Warehouse]]></category>

		<category><![CDATA[Interview Questions and Answers]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/why-build-a-data-warehouse</guid>
		<description><![CDATA[Why Build a Data Warehouse?
For decades, companies have been spending millions of $$$’s on systems to streamline and automate the execution of the business plan.  Over time, these systems have become more and more integrated within a companies operations and between business partners.  However, due to the granularity of the data stored in [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Why Build a Data Warehouse?</strong></p>
<p>For decades, companies have been spending millions of $$$’s on systems to streamline and automate the execution of the business plan.  Over time, these systems have become more and more integrated within a companies operations and between business partners.  However, due to the granularity of the data stored in these systems, management has difficulty accurately monitoring how well the business plan is being executed.</p>
<p>The alternative to making decisions based on feelings or assumptions is often spending hours each month “summarizing reports” to get a macro view of their environment.  Often the job of monitoring the success of business practices is so tedious that managers often fore-go the process altogether and try to rely on their gut feelings or “biggest daily headaches” to drive their decision making process.  When a manager does need hard data to back up their assumptions, they have to wait for weeks for the backlogged IT department to give them a report (hopefully the right one).</p>
<p><img height="376" alt="Image" src="http://www.infopurple.com/wp-content/uploads/2008/07/image-16.jpg" width="450" /></p>
<p>&nbsp;</p>
<p><strong>Data Warehouseing Advantages</strong></p>
<p>Dimensional Model based data warehousing is an enabling technology that can put real answers in the hands of your management team in an efficient and timely manner.</p>
<p><strong>Data Orientation</strong>- Dimensional modeling provides meaningful data to end users by reorganizing transactional data to a dimensional structure, suited for reporting instead of operating efficiency.</p>
<p><strong>Complexity-</strong> By applying consistent and intelligent business rules to raw data, information in the dimensional model can be presented in a simple and straightforward manner, instead of the complex structure found in the transaction systems.</p>
<p><strong>Integrity</strong> - By putting transactional data through rigorous tests and applying business logic specific to the companies operations, data warehouse users can be certain that they are viewing complete, accurate, and consistently defined information.</p>
<p><strong>Sources and Accessibility</strong> – Instead of having to go to the various information brokers in your organization to get information from various subsystems, dimensional modeling allows disparate data from any enterprise application to be brought together and presented in a “one-stop-shop” approach.  Many OLAP (On Line Analytical Processing) tools are deployable over an intranet (or extranet), and can be configured to provide an experience that is unique to each user – giving them access to what they need – and cutting out the noise that they don’t.</p>
<p><strong>Focus</strong> – With data organized for reporting, analysis tools can be used to efficiently ask questions about the data, providing insight into how the business operations are really doing.  By utilizing one of the many powerful OLAP (On Line Analytical Processing) tools, managers can view the information they specifically want to see – and if necessary adjust the level of detail or type of information that is included in the report.</p>
<p><strong>The Data Warehousing Process</strong></p>
<p>At Integration Management, we believe the key to successful decision support application development and maintenance is an effective and efficient data warehousing process.  To make the end product useful, specific attention must be given to the configuration of back-end processes.  To make these processes more effective over time, it is important to have back-end processes that can evolve as the business model becomes more understood or changes over time.  That is why nearly all IHDS utilities were designed to operate from easily configurable metadata.</p>
<p><img height="255" alt="Image" src="http://www.infopurple.com/wp-content/uploads/2008/07/image-17.jpg" width="450" /></p>
<p>&nbsp;</p>
<p>Figure 1 - Data Warehousing Process</p>
<p>&nbsp;</p>
<p><strong>Readying Source Data</strong></p>
<p>The process of transforming transactional data from multiple sources into an integrated, analysis oriented dimensional structure begins with the replication of transactional data in a SQL Server data store.   A key element of this step includes determining the frequency in which the SQL server data store is updated with live data.</p>
<p><strong>Business Rule Application</strong></p>
<p>The heart of a good data warehouse is the process of applying business rules to the raw transactional data to better model the business processes.   It is in this area that organizational knowledge and business procedures that are kept outside of the transaction systems are applied to the transaction systems data, creating a more complete picture of what is happening.</p>
<p>Once the required data is “local” to the warehouse in the replicated data store, “scrub” business rules can be applied to the data to search and respond to incomplete or invalid data.  When the data set is acceptable, business rules are used to categorize and classify objects and events in the transactional data.</p>
<p>An example of a valuable business rule is the ability to enforce referential integrity on the transaction data.  Since some managed care applications do not utilize a true relational database structure, the link between important records is often lost.  For example, the provider identified on the claim may not even exist in the provider file.  Depending on the safeguards used during the data entry or claim adjudication process, this data condition may not be caught.  When standard reports are developed for this particular claim, provider information will not be included, and in some situations, claim may not even be displayed.</p>
<p>After the scrubbing and classification process are complete, the process of mapping the data to the dimensional structure and calculating required business measures is executed.  The dimensional structure transforms the data from a complex structure keyed and organized according to the processing of transactions to one that is more intuitive to business analysts, representing how they view the business critical data in your organization.</p>
<p><strong>Multi-Dimensional Modeling</strong></p>
<p>Once the data has been organized in the “Star Schema” dimensional model, it is ready to be used for reporting and analysis.  The dimensional data can be used as the data source for various reporting applications such as Crystal Reports and Cognos Impromptu.  Multi-dimensional cubes can also be generated to take advantage of OLAP tools such as Cognos Powerplay or Proclarity.</p>
<p>The key to dimensional structure is the organization of data into dimensions and facts.  Dimensions hold the “qualitative” characteristics of your data, such as</p>
<p>    * Members age, group, plan for specific claim,<br />
    * Dates like service, claim, post, and check date<br />
    * Claim diagnosis or procedure codes or categories<br />
    * Relationships such as IPA, PCP</p>
<p>Facts store detailed or summarized qualitative data that is either detail or summarized values of specific numeric or time data associated with your transactional data.  Examples include:</p>
<p>    * Cost values on transactions (claim paid amount, claim billed amount, capitation paid amount, etc)<br />
    * # of occurrences of specific events (admits per 1000, deliveries per 1000, member months)<br />
    * time between events (inpatient days, claim receive date to check date)</p>
<p>After the data is organized into facts and dimensions, it is ready for business analysis driven query development and OLAP tool integration.  Records are efficiently linked providing short query time even for the largest of data sets.</p>
<p><a href="http://www.imihealth.com/info/dw_overview.aspx" target="_blank">read more </a></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/why-build-a-data-warehouse/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Business Intelligence Life Cycle</title>
		<link>http://www.infopurple.com/the-business-intelligence-life-cycle</link>
		<comments>http://www.infopurple.com/the-business-intelligence-life-cycle#comments</comments>
		<pubDate>Thu, 03 Jul 2008 00:37:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[DataWarehousing]]></category>

		<category><![CDATA[Business Inteligence]]></category>

		<category><![CDATA[Data Warehouse]]></category>

		<category><![CDATA[Interview Questions and Answers]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/the-business-intelligence-life-cycle</guid>
		<description><![CDATA[Business Intelligence Overview
True value of Business Inteligence comes from recognizing and harnessing the power of technology to help change the way you do business.   After all – unless there are real decisions made with the information provided by a data warehouse, all you have is a data warehouse, not a decision support application.
 [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Business Intelligence</a> Overview</strong></p>
<p>True value of Business Inteligence comes from recognizing and harnessing the power of technology to help change the way you do business.   After all – unless there are real decisions made with the information provided by a data warehouse, all you have is a data warehouse, not a decision support application.</p>
<p> By utilizing information and insight gained from your data warehouse and analysis tools, The goal should be to help you keep track of the <a href="http://www.dashboardzone.com/category/kpi"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">KPI</a> (<a href="http://www.dashboardzone.com/category/kpi"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">key performance indicators</a>) in your business, and help you put into action changes that will improve your business.</p>
<p><strong>The <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Business Intelligence</a> Life Cycle</strong></p>
<p><img height="430" alt="Image" src="http://www.infopurple.com/wp-content/uploads/2008/07/image-15.jpg" width="450" /></p>
<p>&nbsp;</p>
<p><strong>Raw Data Capture</strong></p>
<p>Instead of using assumptions based on anecdotal feelings or rumors, decision cycle starts with raw data – the piles of data that is captured as part of your day to day operations.  As the normal (and sometimes abnormal) processes of your business are being executed, data such as claims, contracts, authorizations and member contacts are generated from within your organization.</p>
<p><strong>Deriving Information from Business Rules</strong></p>
<p>Next, using input from across your management team and our industry experience, we identify key performance indicators that help measure how well your business is executing.  While many of these metrics are consistent across the healthcare industry, how they are calculated may differ from company to company based on different regulator requirements, variations in business models, and unique organizational mission.</p>
<p>We understand that what may be critical to one company may not be so important to another.  Our goal would be to find the critical 10-15 measures that indicate how your organization is doing.  This “<a href="http://www.dashboardzone.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">dashboard</a>” of measures would help provide a comprehensive view of the effectiveness of the business model and operations.  Examples include: Per Member/Per Month calculations, inpatient days, and claim expense.</p>
<p>Once the key measures are identified, as well as an understanding of how they are to be calculated is defined and agreed upon, the IHDS system can be configured to provide them in ways that make most sense to the management team.</p>
<p>Transactional data that is captured in the first stage of the decision cycle can be transformed, aggregated and presented using the IHDS utilities and methodology.</p>
<p>From the information base, questions about the measures can be asked. The resultant answers allow business analysts, managers and executives to look for trends, top performers, bottom performers, segmentations, correlations, etc.</p>
<p><strong>Business User Oriented Analysis</strong></p>
<p>At this point, the key is providing decision makers with the analytical tools necessary to gain insight from the data warehouse information.  Trends, anomalies, and the statistical distribution of these measures can be researched and understood.  With the summary and detail information from the data warehouse at their fingertips, management can efficiently monitor the performance of the business.</p>
<p><strong>Developing and Executing Smart Initiatives</strong></p>
<p>Making decisions that truly change the ways your business operates is the goal of our Business Intelligence Services.  With our understanding of managed care operations and business model, we can help your management team come up with new initiatives or business practices that will clearly affect your performance, and ultimately your bottom line.</p>
<p>As these changes take place, actual results can be monitored as new data is collected from ongoing business operations.  With the ability to monitor the results, initiatives can be evaluated, tweaked, and even scrapped as necessary.</p>
<p>Let’s look at a meaningful claims expense example.</p>
<p><strong>Data accumulation during normal business operations</strong>.  Whether via EDI or manual entry, claims are entered and adjudicated in your managed care transaction system all day and every day.  In order to perform the adjudication process correctly, many data elements must be included on the claim as the claim system matches various benefit, contract, provider and other reference information.  All this raw data is accumulated during the normal processing of claims, one of the primary business practices of every health plan.</p>
<p><strong>Transformation of raw data into information</strong>.  Each night or weekend, pertinent claim data, captured above, flows into the data warehouse.  During this process, many business rules execute to transform the raw data into an analysis oriented structure.</p>
<p><strong>    Data Scrubs:</strong>   Data scrubs do the work of ensuring the raw data’s integrity.  For example, let’s assume the provider on some claims is not in the master provider table.  Instead of leaving this field blank, we can assign a value called “provider not found”, which ensures that the claim information is still considered in the final warehouse measures.  Another scrub might be for dates of service that are in the future, produced by a typographical error in the claims department.  Instead, this date is changed to the current date.</p>
<p><strong>    Categorization:</strong>  From the claim data, data points are added, adjusted, changed, realigned, or deleted to “categorize” claims the way you need to analyze them.  For example, you may want to determine whether the claim is in-network, or out-of-network.  However, the process to determine subtypes of out-of-network claims is complicated, based on a series of special codes and a vendor or provider list.  These rules can be modeled as business rules in the data warehouse, and executed consistently on each claim.</p>
<p><strong>    Mapping:</strong>  Finally, the raw data must be linked together and mapped to the dimensional structure.  While your managed care system manages professional, institutional, pharmacy, and dental claims differently, they can all be combined in the data warehouse to provide a complete picture of member claim costs.</p>
<p><strong>Analysis leads to Insight.</strong>  Once data is in the dimensional structure, powerful On-Line Analytical Processing tools can be used to find trends and seek out anomalies.  For example, you may find that your out-of-network providers claim costs for a specific procedure are increasing.  Further investigation points to an increase in the incidence of members seeking medical care from a set of providers in a specific sub-specialty not covered by any in-network contracts.</p>
<p><strong>Making decisions to produce change.</strong>  Using the insight gleaned from the above analysis, the contracts department may decide to review contracts with existing providers to include the sub-specialty getting the increased attention.  Alternatively, they may decide to develop contracts with the group of physicians that are currently out-of-network and performing these specific sub-specialty services.</p>
<p><a href="http://www.imihealth.com/info/bi_overview.aspx" target="_blank">read more</a></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/the-business-intelligence-life-cycle/feed</wfw:commentRss>
		</item>
		<item>
		<title>Four Tips for Better Business Intelligence in 2008</title>
		<link>http://www.infopurple.com/four-tips-for-better-business-intelligence-in-2008</link>
		<comments>http://www.infopurple.com/four-tips-for-better-business-intelligence-in-2008#comments</comments>
		<pubDate>Wed, 02 Jul 2008 23:25:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[Business Inteligence]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/four-tips-for-better-business-intelligence-in-2008</guid>
		<description><![CDATA[Four Tips for Better Business Intelligence in 2008
Avalanches of data and the need for better decisions mean it&#8217;s time to take BI to the next level. Aberdeen offers ways to make achieving that next level easier.
Companies want more actionable data, and they want more users to have it. But extending the use of business intelligence [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Four Tips for Better <a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Business Intelligence</a> in 2008</strong><br />
Avalanches of data and the need for better decisions mean it&#8217;s time to take BI to the next level. Aberdeen offers ways to make achieving that next level easier.</p>
<p>Companies want more actionable data, and they want more users to have it. But extending the use of <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> throughout the organization remains a challenge. One reason: Lack of BI and IT skill sets continue to plague companies interested in taking BI to the next level, according to David Hatch, research director at Aberdeen Group.</p>
<p>
Part of the answer lies in providing more user-friendly BI tools. Hatch offers four tips for achieving that goal.</p>
<p><strong>1.</strong> Explore new user-friendly business intelligence tools. New ways of delivering BI can help in your quest to extend business intelligence throughout the enterprise. One new method to consider is BI accessed through a third party—for example, software as a service BI or on-demand BI. In addition, look into the availability of BI as an embedded capability within enterprise applications such as <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">ERP</a> and CRM. Since users are already familiar with your enterprise applications, they may find BI products offered through these providers easier to learn.</p>
<p><strong>2.</strong> Find ways to integrate Web 2.0 information into BI. Web 2.0 data sources and other unstructured data do not obviate the need for traditional structured data, says Hatch, but they can be used to boost BI efforts. Amassing large sets of historical data reveals trends, performance metrics and specific business calculations: These are the foundation of most BI efforts. But the ability to enhance that historical data with relevant and timely information found in blogs, comments and competitors&#8217; websites is becoming more important for delivering actionable information throughout the enterprise.</p>
<p><strong>3.</strong> Give users BI tools that they can be trained to use autonomously. Employees are more likely to use and embrace business intelligence tools that they can use independently. To create an environment of business intelligence self-sufficiency, establish a group composed of both business users and IT representatives to collaborate on prioritizing user needs and choosing or developing BI tools. Hatch also advises being attuned to inflated vendor claims and involving vendors in proof-of-concept and pilot projects.</p>
<p><strong>4.</strong> Consider operational business intelligence. New BI offerings that automate data collection, assembly and delivery processes are one of the most promising areas of business intelligence. To figure out if they&#8217;re right for you, look for data generated by business processes that lend themselves to automated analysis and even actions taken on the basis of that analysis. For example, some financial service organizations use applications that automatically analyze fluctuations in currency rates, and that automatically initiate trades based on those decisions. In many manufacturing organizations, data analysis is done automatically on the progress of chemical interactions—temperature, viscosity and color of a mixture, for example—and changes to the mixture are automatically made at the back end before it ever reaches people on the production line.</p>
<p>originally posted by Diann Daniel<br />
  <a href="http://www.cio.com/article/170201/Four_Tips_for_Better_Business_Intelligence_in_" target="_blank">read more </a></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/four-tips-for-better-business-intelligence-in-2008/feed</wfw:commentRss>
		</item>
		<item>
		<title>Business Intelligence and On-Demand: The Perfect Marriage?</title>
		<link>http://www.infopurple.com/business-intelligence-and-on-demand-the-perfect-marriage</link>
		<comments>http://www.infopurple.com/business-intelligence-and-on-demand-the-perfect-marriage#comments</comments>
		<pubDate>Wed, 02 Jul 2008 23:22:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[Business Inteligence]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/business-intelligence-and-on-demand-the-perfect-marriage</guid>
		<description><![CDATA[Business Intelligence and On-Demand: The Perfect Marriage?
Both established vendors and upstarts now offer BI applications as on-demand services. And more customers are saying yes to faster deployment times, less onerous IT demands and speedier access to reporting data.
Ask Dennis Hernreich, COO and CFO of Casual Male Retail Group, what his life was like before he [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Business Intelligence</a> and On-Demand: The Perfect Marriage?</strong><br />
Both established vendors and upstarts now offer BI applications as on-demand services. And more customers are saying yes to faster deployment times, less onerous IT demands and speedier access to reporting data.</p>
<p>Ask Dennis Hernreich, COO and CFO of Casual Male Retail Group, what his life was like before he switched to an on-demand <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> reporting application, and he remembers the frustration all too easily.</p>
<p>Casual Male Retail Group, a specialty retailer of big and tall men&#8217;s apparel with $464 million in annual sales, was using a legacy on-premise reporting application for its catalog operations. (The company also has 520 retail outlets and e-commerce operations.) But the reporting features built into the system were &#8220;extremely poor,&#8221; as Hernreich describes them: &#8220;Visibility to the business? Terrible. Real-time information? Doesn&#8217;t exist. How are we doing with certain styles by size? Don&#8217;t know.&#8221;</p>
<p>&#8220;It was unacceptable,&#8221; Hernreich says. And viewing those &#8220;canned&#8221; BI reports (which lacked features such as exception reporting) could happen only with making a trip to the printer for a stack of printouts. &#8220;It was hundreds of pages,&#8221; he recalls. &#8220;That&#8217;s just not how you operate today.&#8221;</p>
<p>It&#8217;s not like Casual Male didn&#8217;t have all this information; it just didn&#8217;t have an intuitive and easy way to get at its catalog business&#8217;s sales and inventory trends in real-time. But that changed in 2004, when Casual Male began using a on-demand BI tool from vendor Oco, which takes all of Casual Male&#8217;s data, builds and maintains a data warehouse for it offsite, and creates &#8220;responsive, real-time reporting <a href="http://www.infocaptor.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">dashboards</a> that give us and our business users information at their fingertips,&#8221; Hernreich says.</p>
<p>Today, Hernreich and Casual Male&#8217;s merchandise planners and buyers have access to easy-to-consume dashboards chock-full of catalog data: &#8220;What styles are selling today. How much inventory are we selling today. Where are we short. Where do we need to order. How are we selling by size. What are we out of stock in,&#8221; he says. &#8220;All of these basic questions, in terms of running the business—that&#8217;s what we&#8217;re learning every day from these reports.&#8221;</p>
<p>And those annoying trips to the printer have ended.</p>
<p>On-Demand Fears Linger<br />
Casual Male Retail Group is part of the small (but growing) percentage of businesses using on-demand or software-as-a-service (SaaS) BI tools, which can be deployed at a much faster pace and with much less initial cost than traditional on-premise software installations.</p>
<p>&#8220;To go from nothing to a fully automated system in a matter of weeks is an incredible sell for any company—large or small,&#8221; says Scott Cohenford, a senior analyst at RapidAdvance, a provider of cash advances to small and midsize businesses, who led his company&#8217;s efforts to purchase Business Object&#8217;s OnDemand platform.</p>
<p>Note that Cohenford is not an IT person by title or pedigree (he has an accounting background): ease of use (setup, integration, training) is a major selling point to on-demand BI customers. &#8220;I was tasked with reviewing the different options out there, seeing how quickly we could move forward with the solutions and do so at a low cost and automate as much as possible,&#8221; Cohenford says. &#8220;And that&#8217;s what pushed me into the SaaS world&#8217;s BI tools.&#8221;</p>
<p><a href="http://www.cio.com/article/206551/Business_Intelligence_and_On_Demand_The_Perfect_Marriage_/1" target="_blank">read more &gt;&gt;</a></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/business-intelligence-and-on-demand-the-perfect-marriage/feed</wfw:commentRss>
		</item>
		<item>
		<title>How Valuable is Business Intelligence to the Enterprise?</title>
		<link>http://www.infopurple.com/how-valuable-is-business-intelligence-to-the-enterprise-2</link>
		<comments>http://www.infopurple.com/how-valuable-is-business-intelligence-to-the-enterprise-2#comments</comments>
		<pubDate>Wed, 02 Jul 2008 23:16:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[Business Inteligence]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/how-valuable-is-business-intelligence-to-the-enterprise-2</guid>
		<description><![CDATA[How Valuable is Business Intelligence to the Enterprise?
continued from &#60;&#60;
Finding 1
The BI Learning Curve Has Just Begun
Business intelligence use grows considerably as companies gain experience with this technology. Nearly 90 percent of our respondents use BI, and most others will probably start doing so in the next two years. Still, there are relatively few BI [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How Valuable is <a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Business Intelligence</a> to the Enterprise?</strong></p>
<p><em><a href="http://www.infopurple.com/top-5-ways-to-increase-bi-value" target="_blank">continued from &lt;&lt;</a></em></p>
<p><strong>Finding 1<br />
The BI Learning Curve Has Just Begun</strong><br />
<a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Business intelligence</a> use grows considerably as companies gain experience with this technology. Nearly 90 percent of our respondents use BI, and most others will probably start doing so in the next two years. Still, there are relatively few BI veterans out there—companies with more than half a decade of experience using business intelligence to analyze data on customers, competitors, internal processes or financials. BI veterans use BI for more reasons and provide BI tools to staff more than BI novices do. In particular, many more veterans use BI to analyze customer data. Projecting forward, that means BI usage will grow broader—there&#8217;ll be more kinds of BI applications—and deeper within organizations in the coming years. Analysts who predict the &#8220;democratization&#8221; of BI appear correct.</p>
<p><strong>Finding 2<br />
Effectiveness Is a Sometimes Thing<br /></strong>BI brings benefits, but many goals go unmet. In general, IT executives are bullish on BI; nearly three-quarters say it&#8217;s doing a good job of contributing to the bottom line and pleasing users. Newcomers to BI will be glad to know the more experience companies have with BI, the happier they are with the results. But drill down to specific goals and benefits, and the track record is spotty. BI is good at analyzing financial data and internal operations. However, it&#8217;s not as effective at analyzing marketing campaigns, or cross-selling and upselling to customers. That&#8217;s a problem, especially since these are likely to be big growth areas for BI, judging by how companies with extensive BI experience use them.</p>
<p><strong>Finding 3<br />
BI Success Depends on Execution<br /></strong>IT organizations must focus on data management, ease of use and providing real-time information.To achieve their top business goals for BI—improving processes, sales and marketing compliance and so on—CIOs cite three priorities: improving information quality, improving management&#8217;s ability to use information, and offering more kinds of information to more people. We asked respondents how they plan to accomplish these goals. No. 1, by a longshot, is improving data management; next, in priority order are improving ease of use, improving generation of real-time information and embedding BI into business processes and workflows. These tactics should be high priorities for any IT organization implementing BI. Unless they&#8217;re achieved, companies will be hard-pressed to generate much value from the tools they use to obtain business intelligence.</p>
<p><strong>Finding 4<br />
Garbage In, Bad Intelligence Out<br /></strong>Good data quality and satisfaction with BI information go hand in hand. But unfortunately, many companies report data quality problems reduce the ROI on business intelligence, even after five years&#8217; experience with these systems. CIOs who invest in establishing data quality processes will be rewarded by increased user satisfaction with the information provided by their BI systems. In addition, about half these companies have undertaken a &#8220;master data management&#8221; initiative. There&#8217;s a correlation between master data management and BI&#8217;s impact on the bottom line, but it&#8217;s not clear if it&#8217;s the result of the MDM initiative alone or other efforts to improve data quality as well.</p>
<p><strong>Finding 5<br />
Weak Links in the BI Chain<br /></strong>In addition to data management and quality issues, CIOs must be concerned about strategic vision, integration, usability and weak points in the BI cycle. It&#8217;s startling to see that fewer than 40 percent of companies know what they hope to achieve with BI and how they plan to use it. This sets up BI for alignment problems, such as defining BI goals, and clearly affects the contribution BI makes. Lack of integration affects more than one BI user out of three and—no surprise here—it&#8217;s especially a problem with companies in which data quality is lacking. Companies are much better at collecting and organizing data than making it usable or putting it to work. No wonder 58 percent of respondents say users don&#8217;t know how to analyze or interpret BI data.</p>
<p>read more <strong><a href="http://www.cioinsight.com/c/a/Research/How-Valuable-is-Business-Intelligence-to-the-Enterprise/5/" target="_blank">here</a></strong></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/how-valuable-is-business-intelligence-to-the-enterprise-2/feed</wfw:commentRss>
		</item>
		<item>
		<title>Top 5 Ways To Increase BI Value</title>
		<link>http://www.infopurple.com/top-5-ways-to-increase-bi-value</link>
		<comments>http://www.infopurple.com/top-5-ways-to-increase-bi-value#comments</comments>
		<pubDate>Wed, 02 Jul 2008 23:03:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[Business Inteligence]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/top-5-ways-to-increase-bi-value</guid>
		<description><![CDATA[Top 5 Ways To Increase BI Value
What are the most effective ways to increase the value your company gets from its business intelligence systems?
N=215

1)Better align our business intelligence systems with our business strategy [50% ]
2)Improve data quality [47% ]
3)Better integrate our business intelligence systems with other systems such as CRM or ERP [41% ]
4)Better understand [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Top 5 Ways To Increase BI Value</strong></p>
<p>What are the most effective ways to increase the value your company gets from its <a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> systems?<br />
N=215</p>
<p>
1)Better align our <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> systems with our business strategy [50% ]</p>
<p>2)Improve data quality [47% ]</p>
<p>3)Better integrate our business intelligence systems with other systems such as CRM or <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">ERP</a> [41% ]</p>
<p>4)Better understand end-user needs and requirements [39%]</p>
<p>5)Improve user training [27 %]</p>
<p>&nbsp;</p>
<p><strong>Finding 1: The BI Learning Curve Has Just Begun</strong></p>
<p><strong>Finding 2: Effectiveness Is a Sometimes Thing</strong></p>
<p><strong>Finding 3: BI Success Depends on Execution</strong></p>
<p><strong>Finding 4: Garbage In, Bad Intelligence Out</strong></p>
<p><strong>Finding 5: Weak Links in the BI Chain</strong></p>
<p><strong>Next &gt;&gt; Finding 1: The BI Learning Curve Has Just Begun</strong></p>
<p>
 </p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 1);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/top-5-ways-to-increase-bi-value/feed</wfw:commentRss>
		</item>
		<item>
		<title>How Valuable is Business Intelligence to the Enterprise?</title>
		<link>http://www.infopurple.com/how-valuable-is-business-intelligence-to-the-enterprise</link>
		<comments>http://www.infopurple.com/how-valuable-is-business-intelligence-to-the-enterprise#comments</comments>
		<pubDate>Wed, 02 Jul 2008 22:58:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/how-valuable-is-business-intelligence-to-the-enterprise</guid>
		<description><![CDATA[How Valuable is Business Intelligence to the Enterprise?
Just 26 percent of companies using business intelligence have five or more years&#8217; experience with the technology. Those new to BI should be encouraged by the success of those who&#8217;ve gone before.
Overall, business intelligence is an IT success story: Our most recent IT spending survey found that BI [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How Valuable is <a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Business Intelligence</a> to the Enterprise?</strong></p>
<p>Just 26 percent of companies using <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> have five or more years&#8217; experience with the technology. Those new to BI should be encouraged by the success of those who&#8217;ve gone before.<br />
Overall, business intelligence is an IT success story: Our most recent IT spending survey found that BI spending is increasing more quickly than spending on any other application. This month&#8217;s survey reveals that 72 percent of users say their BI efforts have had a major and measurable impact on their companies&#8217; bottom lines. But not all business intelligence goals are being met, and there are problems beneath the veneer of satisfaction.</p>
<p>An overarching question in this year&#8217;s BI survey is: Are companies learning how to use BI better? The good news is that experience counts. The longer a company uses BI, the wider BI usage spreads within the organization, the more the organization tries to do with the technology and the bigger the technology&#8217;s contribution to the bottom line. That&#8217;s just what CIOs would hope to hear. This year&#8217;s survey also looks into the practices companies follow to achieve their BI goals.</p>
<p>We see a correlation between experience with BI, data quality and development of a clear strategy and vision for business intelligence use. Still, many long-time BI users report problems. Issues of integration, accessibility and bringing users up to speed on how to analyze and use BI data dog this technology. The value of BI increases with experience, but even veteran BI users see room for improvement, and opportunities to gain more value from BI.</p>
<p>read more &gt;&gt; <strong>Top 5 Ways To Increase BI Value</strong></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/how-valuable-is-business-intelligence-to-the-enterprise/feed</wfw:commentRss>
		</item>
		<item>
		<title>BUSINESS INTELLIGENCE IN ACTION</title>
		<link>http://www.infopurple.com/business-intelligence-in-action</link>
		<comments>http://www.infopurple.com/business-intelligence-in-action#comments</comments>
		<pubDate>Wed, 02 Jul 2008 22:48:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/business-intelligence-in-action</guid>
		<description><![CDATA[BUSINESS INTELLIGENCE IN ACTION
continued from here &#60;&#60;
&#8220;We were a very different university about one year ago,&#8221; says Keith Werosh, registrar at the National University of Health Sciences (Ill.). He is referring to the operation pre-BI. NUHS installed BI from Business Objects a year ago. &#8220;Prior to having this system, we were departmentalized. Information was kept [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">BUSINESS INTELLIGENCE</a> IN ACTION</strong></p>
<p><a href="http://www.infopurple.com/business-intelligence" target="_blank">continued from here &lt;&lt;</a><br />
&#8220;We were a very different university about one year ago,&#8221; says Keith Werosh, registrar at the National University of Health Sciences (Ill.). He is referring to the operation pre-BI. NUHS installed BI from Business Objects a year ago. &#8220;Prior to having this system, we were departmentalized. Information was kept on spreadsheets throughout the university,&#8221; he says. The Registrar would have relevant data, but not related information. &#8220;Paper touched hands a number of times. Other offices would even rekey the information,&#8221; explains Werosh. As a result, NUHS officials wouldn&#8217;t have a picture of the enrollment process until weeks into a term.</p>
<p>
A BI solution was in order. Even so, NUHS didn&#8217;t rush into deploying one. &#8220;During a two-year time frame, we discussed what we needed and how we were going to achieve it,&#8221; adds Werosh, who was the executive on campus tapped to &#8220;get the ball rolling&#8221; because much usage would be centered around the registrar&#8217;s office.</p>
<p>After the investigative period, NUHS invested approximately $200,000 in a BI system supplied by Business Objects.</p>
<p>The benefits have been multifold. Today the registration process is clearly viewed instantly. &#8220;We can process information on the spot,&#8221; Werosh reports. NUHS can even determine the peak registration time during the day. For example, most online student traffic falls between 9 a.m. and 10 a.m. &#8220;We added additional staff at that time to handle the traffic. Student workers were added to key areas and computer labs since more online use would lead to more questions. Others worked the telephones and were able to call back immediately to those students who had contacted online, but who wanted follow-up,&#8221; he says.</p>
<p>Florida State University adopted BI several years earlier, according to Rick Burnett, director of student information management. &#8220;We saw data as the low-hanging fruit and wanted to start using it to figure out the best students to target.&#8221; To that end, the university, which enrolls 40,000, uses a BI system that links to its CRM system from Talisma, its databases, and other resources, to determine which classes are filling up the fastest. &#8220;An alert goes out when a course is 80 percent full.&#8221; This, in turn, affects room scheduling, and gives fodder for studying other course offerings.</p>
<p>BI has also added a layer of sophistication to the admissions strategy. Officials at FSU, which receives 55,000 applications each year, once had to cull through each file and hand-code information. If at the end of the decision cycle there was a change in the admissions criteria (such as the need for slightly higher GPA requirements), decision-makers would have to retouch all the files again.</p>
<p>Setting a BI query avoids all that. A new list of qualified applicants can be produced within 30 minutes.</p>
<p>read more <strong><a href="http://www.universitybusiness.com/viewarticle.aspx?articleid=659&amp;p=2#0">here </a></strong></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/business-intelligence-in-action/feed</wfw:commentRss>
		</item>
		<item>
		<title>Business Intelligence</title>
		<link>http://www.infopurple.com/business-intelligence</link>
		<comments>http://www.infopurple.com/business-intelligence#comments</comments>
		<pubDate>Wed, 02 Jul 2008 22:43:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[DataWarehousing]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/business-intelligence</guid>
		<description><![CDATA[Business Intelligence

A new technology can analyze data at amazing speeds. So why is higher ed slow to adopt? 
Listen to higher ed futurists and you&#8217;ll be convinced that business intelligence is the wave of the future. It is the next &#8220;it&#8221; thing that will connect every part of the enterprise. Best yet, BI will link [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Business Intelligence</a></strong></p>
<p>
<strong>A new technology can analyze data at amazing speeds. So why is higher ed slow to adopt? <br /></strong><br />
Listen to higher ed futurists and you&#8217;ll be convinced that <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> is the wave of the future. It is the next &#8220;it&#8221; thing that will connect every part of the enterprise. Best yet, BI will link all data, allowing disparate software programs, provided by numerous and sometimes-competing vendors, to &#8220;talk&#8221; to each other.</p>
<p>Admissions files will connect to financial aid information will connect to student services files will connect to academic records, and so on. The end result will be data that can actually predict what that student might do next, and even calculate financial aid needs and shifting interests.</p>
<p>It sounds wonderful, and BI is already fulfilling its promise at some colleges and universities. Trouble is, the BI&#8217;s potential is so vast that it remains hard to get a simple understanding of it. Each vendor has its own definition of BI. Some claim that systems such as CRM (constituent/customer relationship management) and <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">ERP</a> (enterprise resource planning) are BI technology. Others say that data warehousing, decision support systems, online analytical processing, knowledge management, and web personalization are all part of BI.</p>
<p>&#8220;Everyone and their uncle is calling their solution &#8216;business intelligence.&#8217; &#8221; -Nicole Engelbert, Datamonitor<br />
So, which is it? The answer may be a little bit of all of the above and then some.</p>
<p>&#8220;Everyone and their uncle is calling their solution &#8216;business intelligence,&#8217; &#8221; notes Nicole Engelbert, senior analyst, public sector technology, at Datamonitor. &#8220;Institutions are asking, &#8216;What does this all mean to me?&#8217; &#8220;</p>
<p>Most BI systems have been around for about eight years, and most of the early adopters were in the retail sector.</p>
<p>Engelbert offers her own clarification. ERP, for example, provides transactional reports, she explains. &#8220;ERP will give you how many students enrolled on Tuesday, or will tell you if Organic Chemistry 101 is full.&#8221; A BI system will actually digest this information, and other data, and tell the user if Organic Chem is being offered at a good time, or if the class is losing students to the Biology 101 class offered at the same time, or if the college needs to offer additional course sections.</p>
<p>Comparatively, CRM systems are more about transaction and functions. They will manage recruitment campaigns, alumni appeals, and other processes. They capture the contacts of those who have visited online, and then drive the related mailing of the viewbook. But while CRM systems will certainly tally who replied and which part of the campaign delivered results, it is BI that will offer a deeper analysis. BI can predict which ZIP codes will be the most promising for a mailing, and which geographic areas will have students with the least or most need for financial aid.</p>
<p>Many ERP vendors in the higher education sector claim to have BI capabilities. Engelbert notes that some have formed partnerships with companies that offer true BI. Datatel&#8217;s new partnerships with Business Objects and SAS, both BI providers, are good examples. Similarly, Intelliworks, a CRM provider, has a partnership with Microstrategy.</p>
<p>In mid-2006, Campus Management added two BI modules, thanks to partnerships with iStrategy Solutions and Noetix. One, called CampusQuery, provides analysis at a glance. The other, CampusAnalytics, can do predictive modeling.</p>
<p>BI systems are most noted for their speed and convenience tools that display metrics with spotlight indicators, or <a href="http://www.infocaptor.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">dashboards</a>. These dashboards provide quick peeks on trends in real time-and do so in a format the average user can read.</p>
<p>read more <strong><a href="http://www.universitybusiness.com/viewarticle.aspx?articleid=659" target="_blank">here</a></strong></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 1);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/business-intelligence/feed</wfw:commentRss>
		</item>
		<item>
		<title>What is the Difference Between Querying and Browsing Data?</title>
		<link>http://www.infopurple.com/what-is-the-difference-between-querying-and-browsing-data</link>
		<comments>http://www.infopurple.com/what-is-the-difference-between-querying-and-browsing-data#comments</comments>
		<pubDate>Wed, 02 Jul 2008 22:38:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[DataWarehousing]]></category>

		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/what-is-the-difference-between-querying-and-browsing-data</guid>
		<description><![CDATA[What is the Difference Between Querying and Browsing Data?
Search is beginning to gain interest in the business intelligence (BI) space, and several people have begun asking about the difference between querying data (using a traditional database query language) and browsing data using a search tool, and which approach to use when. This blog entry is [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is the Difference Between Querying and Browsing Data?</strong><br />
Search is beginning to gain interest in the <a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> (BI) space, and several people have begun asking about the difference between querying data (using a traditional database query language) and browsing data using a search tool, and which approach to use when. This blog entry is an attempt to put a stake in the ground and to encourage a discussion on this topic.</p>
<p>Let&#8217;s first discuss traditional database queries. In the BI environment, a BI tool or application issues a query against a database system. The query is in a formalized database language such as SQL (note that S stands for structured). A GUI may be used to hide the complexities of SQL. The results of the query can be browsed, reported on, analyzed, etc. The emphasis of this style of processing is on the analysis of structured data. It is not designed for the ad hoc browsing of information from a bunch of unrelated data sources.</p>
<p>Typically database query processing is formalized and standardized both in terms of the query language itself and the database structures accessed. There are natural language interfaces for doing this type of processing, but they simply convert the natural language requests into database language statements.</p>
<p>With database query processing you have to have some knowledge (i.e., metadata) about the structure of the data before you can access it. There has been a move to relax the structured approach of structured database processing by adding database structure and language support for accessing and analyzing semi-structured data such as XML.</p>
<p>When it comes to unstructured data there are two options. The first is to transform all or some of the unstructured data into a structured or semi-structured format, and store the transformed data in a database system (together with any remaining unstructured data that has not been converted). The transformed data can be associated with existing structured data in the database. This transformed data can then be processed by database queries, and any associated unstructured data retrieved as a part of the result set.</p>
<p>A second option for unstructured data is to access it directly using a search tool. With a search tool information is accessed using search queries. As with database languages, these queries can be generated from a GUI. The results from search queries can be browsed to find the data of interest. The search results can also be passed to an analysis tool for further processing.</p>
<p>Search languages are designed for accessing freeform unstructured data. Of course search queries can also access both structured and unstructured data. Search query languages are less complex than database query languages, because, unlike languages such as SQL, they are not designed for complex data retrieval and analysis.</p>
<p>To improve the accuracy of search queries, metadata can be extracted from the unstructured data using utilities supplied with the search tool, or by third-party vendors who offer taxonomy and information exploration tools. The better the metadata, the more accurate the search results are likely to be. The metadata adds semantic meaning to the unstructured data. In some cases, the metadata can be used to build faceted or taxonomy-driven search interfaces that use the metadata to filter the search results. The metadata can also be used to aid in the transformation of unstructured data into a semi-structured or structured format. It is these types of capability that separate enterprise search tools from internet search tools.</p>
<p>The bottom line is that the database query and the search query approaches are starting to come together. However, search queries are designed for the browsing of less formalized and unstructured information, whereas database queries are intended for the analysis of structured and semi-structured data. As discussed, unstructured information can be transformed into a semi-structured format, and search results can be further analyzed by analysis tools. Both approaches use some form of query language.</p>
<p>Originally posted by Collin White read more <a href="http://www.b-eye-network.com/blogs/business_integration/archives/2007/09/what_is_the_dif.php" target="_blank">&gt;&gt; </a></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/what-is-the-difference-between-querying-and-browsing-data/feed</wfw:commentRss>
		</item>
		<item>
		<title>When is a Data Warehouse Appliance not a Data Warehouse Appliance?</title>
		<link>http://www.infopurple.com/when-is-a-data-warehouse-appliance-not-a-data-warehouse-appliance</link>
		<comments>http://www.infopurple.com/when-is-a-data-warehouse-appliance-not-a-data-warehouse-appliance#comments</comments>
		<pubDate>Wed, 02 Jul 2008 22:36:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[DataWarehousing]]></category>

		<category><![CDATA[Business Inteligence]]></category>

		<category><![CDATA[Data Warehouse]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/when-is-a-data-warehouse-appliance-not-a-data-warehouse-appliance</guid>
		<description><![CDATA[When is a Data Warehouse Appliance not a Data Warehouse Appliance?
Data warehouse appliances are so-called because they are used for storing and managing the data associated with data warehousing projects. Strictly speaking though these products should be called database appliances, or simply data appliances, because they support only the database processing component of a data [...]]]></description>
			<content:encoded><![CDATA[<p><strong>When is a Data Warehouse Appliance not a Data Warehouse Appliance?</strong><br />
Data warehouse appliances are so-called because they are used for storing and managing the data associated with data warehousing projects. Strictly speaking though these products should be called database appliances, or simply data appliances, because they support only the database processing component of a data warehousing and <a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> environment. Many of these appliances are missing the data integration software required to capture data from operational systems, and transform and consolidate it into a data warehouse. Given that the task of data integration is a significant percentage of the effort required to build a data warehouse, the cost savings of these appliances for data warehousing projects may not be as high as it first appears.</p>
<p>This point is brought home by the recent announcement by Vertica of a strategic relationship with Talend, an open-source data integration vendor. Vertica markets the column-oriented Vertica Database, and has a relationship with HP and Red Hat to offer a bundled hardware and software analytical database solution. Given that Talend also has relationship with open source BI tool vendor Jaspersoft, it means the combination of Vertica, Talend, JasperSoft and Red Hat software on top of an HP hardware platform provides a cost-effective and open source data warehouse and BI environment. If this package was offered as a single solution, and supported by a single vendor, it would represent the ideal data warehouse and BI appliance solution.</p>
<p>In my opinion, the appliance vendors must move toward offering these types of packaged software environments if they are to survive. Simply offering better price/performance is not a viable long-term strategy. The database machine vendors discovered this. In fact, I believe the vendors need to go one step further and provide application appliances that provide a complete business solution. Although it had a proprietary architecture, the IBM AS/400 was a tremendous success because it offered a complete application solution to business users.</p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/when-is-a-data-warehouse-appliance-not-a-data-warehouse-appliance/feed</wfw:commentRss>
		</item>
		<item>
		<title>Oracle Applications Glossary 00</title>
		<link>http://www.infopurple.com/oracle-applications-glossary-00</link>
		<comments>http://www.infopurple.com/oracle-applications-glossary-00#comments</comments>
		<pubDate>Tue, 01 Jul 2008 16:22:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Interview Questions(&amp; answers)]]></category>

		<category><![CDATA[Oracle Apps Glossary]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/oracle-applications-glossary-00</guid>
		<description><![CDATA[Oracle Applications Glossary
This is something which will help the newbee for their familiarity of Oracle apps terms.Also can be found on Oracle download site.
This combined glossary defines terms we use in the Assets, Cash Management, General Ledger, Payables, Projects, and Receivables User&#8217;s Guides and in various country-specific and region-specific manuals.
4-4-5 calendar
A depreciation calendar with 12 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Oracle Applications Glossary</strong></p>
<p>This is something which will help the newbee for their familiarity of Oracle <a href="http://appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">apps</a> terms.Also can be found on Oracle download site.</p>
<p>This combined glossary defines terms we use in the Assets, Cash Management, General Ledger, Payables, Projects, and Receivables User&#8217;s Guides and in various country-specific and region-specific manuals.</p>
<p><strong>4-4-5 calendar</strong><br />
A depreciation calendar with 12 uneven periods: four cycles of a four-week period, followed by a four-week period, followed by a five-week period. Depreciation is usually divided by days for a 4-4-5 calendar. Since a 4-4-5 calendar has 364 days per year, it has different start and end dates for the fiscal year each year.</p>
<p><strong>1099 form</strong><br />
The forms the Internal Revenue Service supplies to record a particular category of payment or receipt.</p>
<p><strong>1099 number</strong><br />
The tax identification number for a supplier. According to IRS rules in the United States, lack of a valid tax identification number may result in tax withholding.<br />
Oracle Applications stores the tax identification number for each supplier. Oracle Applications also enables you to enter a withholding status for each supplier.</p>
<p><strong>1099 types</strong><br />
A 1099 classification scheme used in the United States for types of payments. Each 1099 form has one or more payment types. A 1099 supplier may receive payments from more than one type. The 1099-MISC form has the following types: rents, royalties, prizes and awards, federal income tax withheld, fishing boat proceeds, medical and health care payments, non-employee compensation, and substitute payments in lieu of dividends or interest.<br />
Oracle Applications records 1099 payments by type so that you can report them according to IRS requirements.</p>
<p><strong>2-way matching</strong><br />
The process of verifying that purchase order and invoice information matches within accepted tolerance levels. Oracle Applications uses the following criteria to verify two-way matching:<br />
Invoice price &lt;= Order price<br />
Quantity billed &lt;= Quantity ordered</p>
<p>
<strong>24-hour format</strong><br />
A time format that uses a 24 hour clock instead of am and pm, so that 3:30 would be 3:30 am, 16:15 would be 4:15 pm, 19:42 would be 7:42 pm, etc.</p>
<p><strong>3-way matching</strong><br />
The process of verifying that purchase order, invoice, and receiving information matches within accepted tolerance levels. Oracle Applications uses the following criteria to verify three-way matching:<br />
Invoice price &lt;= Purchase Order price<br />
Quantity billed &lt;= Quantity ordered<br />
Quantity billed &lt;= Quantity received</p>
<p><strong>4-way matching<br /></strong>The process of verifying that purchase order, invoice, and receiving information matches within accepted tolerance levels. Oracle Applications uses the following criteria to verify four-way matching:<br />
Invoice price &lt;= Order price<br />
Quantity billed &lt;= Quantity ordered<br />
Quantity billed &lt;= Quantity received<br />
Quantity billed &lt;= Quantity accepted</p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/oracle-applications-glossary-00/feed</wfw:commentRss>
		</item>
		<item>
		<title>AIM (Application Implementation Method )</title>
		<link>http://www.infopurple.com/aim-application-implementation-method</link>
		<comments>http://www.infopurple.com/aim-application-implementation-method#comments</comments>
		<pubDate>Tue, 01 Jul 2008 04:02:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[AOL (Application Object Library )]]></category>

		<category><![CDATA[ERP]]></category>

		<category><![CDATA[Interview Questions(&amp; answers)]]></category>

		<category><![CDATA[AIM Methodology]]></category>

		<category><![CDATA[Glossary]]></category>

		<category><![CDATA[Interview Questions and Answers]]></category>

		<category><![CDATA[Oracle Apps]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/aim-application-implementation-method</guid>
		<description><![CDATA[AIM (Application Implementation Method )
Every Oracle apps consultant will be and should be aware of the documents related to his/her work profile depending if they are Functional or Technical consultant.
Business Process Architecture (BP)
BP.010 Define Business and Process Strategy
BP.020 Catalog and Analyze Potential Changes
BP.030 Determine Data Gathering Requirements
BP.040 Develop Current Process Model
BP.050 Review Leading Practices
BP.060 Develop [...]]]></description>
			<content:encoded><![CDATA[<p><strong>AIM (Application Implementation Method )</strong><br />
Every Oracle <a href="http://appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">apps</a> consultant will be and should be aware of the documents related to his/her work profile depending if they are Functional or Technical consultant.</p>
<p><strong>Business Process Architecture (BP)</strong><br />
BP.010 Define Business and Process Strategy<br />
BP.020 Catalog and Analyze Potential Changes<br />
BP.030 Determine Data Gathering Requirements<br />
BP.040 Develop Current Process Model<br />
BP.050 Review Leading Practices<br />
BP.060 Develop High-Level Process Vision<br />
BP.070 Develop High-Level Process Design<br />
BP.080 Develop Future Process Model<br />
BP.090 Document Business Procedure</p>
<p><strong>Business Requirements Definition (RD)<br /></strong>RD.010 Identify Current Financial and Operating Structure<br />
RD.020 Conduct Current Business Baseline<br />
RD.030 Establish Process and Mapping Summary<br />
RD.040 Gather Business Volumes and Metrics<br />
RD.050 Gather Business Requirements<br />
RD.060 Determine Audit and Control Requirements<br />
RD.070 Identify Business Availability Requirements<br />
RD.080 Identify Reporting and Information Access Requirements</p>
<p><strong>Business Requirements Mapping</strong><br />
BR.010 Analyze High-Level Gaps<br />
BR.020 Prepare mapping environment<br />
BR.030 Map Business requirements<br />
BR.040 Map Business Data<br />
BR.050 Conduct Integration Fit Analysis<br />
BR.060 Create Information Model<br />
BR.070 Create Reporting Fit Analysis<br />
BR.080 Test Business Solutions<br />
BR.090 Confirm Integrated Business Solutions<br />
BR.100 Define Applications Setup<br />
BR.110 Define security Profiles</p>
<p><strong>Application and Technical Architecture (TA)<br /></strong>TA.010 Define Architecture Requirements and Strategy<br />
TA.020 Identify Current Technical Architecture<br />
TA.030 Develop Preliminary Conceptual Architecture<br />
TA.040 Define Application Architecture<br />
TA.050 Define System Availability Strategy<br />
TA.060 Define Reporting and Information Access Strategy<br />
TA.070 Revise Conceptual Architecture<br />
TA.080 Define Application Security Architecture<br />
TA.090 Define Application and Database Server Architecture<br />
TA.100 Define and Propose Architecture Subsystems<br />
TA.110 Define System Capacity Plan<br />
TA.120 Define Platform and Network Architecture<br />
TA.130 Define Application Deployment Plan<br />
TA.140 Assess Performance Risks<br />
TA.150 Define System Management Procedures</p>
<p><strong>Module Design and Build (MD)</strong><br />
MD.010 Define Application Extension Strategy<br />
MD.020 Define and estimate application extensions<br />
MD.030 Define design standards<br />
MD.040 Define Build Standards<br />
MD.050 Create Application extensions functional design<br />
MD.060 Design Database extensions<br />
MD.070 Create Application extensions technical design<br />
MD.080 Review functional and Technical designs<br />
MD.090 Prepare Development environment<br />
MD.100 Create Database extensions<br />
MD.110 Create Application extension modules<br />
MD.120 Create Installation routines</p>
<p><strong>Data Conversion (CV)<br /></strong>CV.010 Define data conversion requirements and strategy<br />
CV.020 Define Conversion standards<br />
CV.030 Prepare conversion environment<br />
CV.040 Perform conversion data mapping<br />
CV.050 Define manual conversion procedures<br />
CV.060 Design conversion programs<br />
CV.070 Prepare conversion test plans<br />
CV.080 Develop conversion programs<br />
CV.090 Perform conversion unit tests<br />
CV.100 Perform conversion business objects<br />
CV.110 Perform conversion validation tests<br />
CV.120 Install conversion programs<br />
CV.130 Convert and verify data</p>
<p><strong>Documentation (DO)</strong><br />
DO.010 Define documentation requirements and strategy<br />
DO.020 Define Documentation standards and procedures<br />
DO.030 Prepare glossary<br />
DO.040 Prepare documentation environment<br />
DO.050 Produce documentation prototypes and templates<br />
DO.060 Publish user reference manual<br />
DO.070 Publish user guide<br />
DO.080 Publish technical reference manual<br />
DO.090 Publish system management guide</p>
<p><strong>Business System Testing (TE)<br /></strong>TE.010 Define testing requirements and strategy<br />
TE.020 Develop unit test script<br />
TE.030 Develop link test script<br />
TE.040 Develop system test script<br />
TE.050 Develop systems integration test script<br />
TE.060 Prepare testing environments<br />
TE.070 Perform unit test<br />
TE.080 Perform link test<br />
TE.090 perform installation test<br />
TE.100 Prepare key users for testing<br />
TE.110 Perform system test<br />
TE.120 Perform systems integration test<br />
TE.130 Perform Acceptance test</p>
<p><strong>PERFORMACE TESTING(PT)</strong><br />
PT.010 - Define Performance Testing Strategy<br />
PT.020 - Identify Performance Test Scenarios<br />
PT.030 - Identify Performance Test Transaction<br />
PT.040 - Create Performance Test Scripts<br />
PT.050 - Design Performance Test Transaction Programs<br />
PT.060 - Design Performance Test Data<br />
PT.070 - Design Test Database Load Programs<br />
PT.080 - Create Performance Test TransactionPrograms<br />
PT.090 - Create Test Database Load Programs<br />
PT.100 - Construct Performance Test Database<br />
PT.110 - Prepare Performance Test Environment<br />
PT.120 - Execute Performance Test</p>
<p><strong>Adoption and Learning (AP)<br /></strong>AP.010 - Define Executive Project Strategy<br />
AP.020 - Conduct Initial Project Team Orientation<br />
AP.030 - Develop Project Team Learning Plan<br />
AP.040 - Prepare Project Team Learning Environment<br />
AP.050 - Conduct Project Team Learning Events<br />
AP.060 - Develop Business Unit Managers’Readiness Plan<br />
AP.070 - Develop Project Readiness Roadmap<br />
AP.080 - Develop and Execute CommunicationCampaign<br />
AP.090 - Develop Managers’ Readiness Plan<br />
AP.100 - Identify Business Process Impact onOrganization<br />
AP.110 - Align Human Performance SupportSystems<br />
AP.120 - Align Information Technology Groups<br />
AP.130 - Conduct User Learning Needs Analysis<br />
AP.140 - Develop User Learning Plan<br />
AP.150 - Develop User Learningware<br />
AP.160 - Prepare User Learning Environment<br />
AP.170 - Conduct User Learning Events<br />
AP.180 - Conduct Effectiveness Assessment</p>
<p><strong>Production Migration (PM)</strong><br />
PM.010 - Define Transition Strategy<br />
PM.020 - Design Production Support Infrastructure<br />
PM.030 - Develop Transition and Contingency Plan<br />
PM.040 - Prepare Production Environment<br />
PM.050 - Set Up Applications<br />
PM.060 - Implement Production Support Infrastructure<br />
PM.070 - Verify Production Readiness<br />
PM.080 - Begin Production<br />
PM.090 - Measure System Performance<br />
PM.100 - Maintain System<br />
PM.110 - Refine Production System<br />
PM.120 - Decommission Former Systems<br />
PM.130 - Propose Future Business Direction<br />
PM.140 - Propose Future Technical Direction</p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/aim-application-implementation-method/feed</wfw:commentRss>
		</item>
		<item>
		<title>Is Data Warehousing Essential to Business Intelligence?</title>
		<link>http://www.infopurple.com/is-data-warehousing-essential-to-business-intelligence</link>
		<comments>http://www.infopurple.com/is-data-warehousing-essential-to-business-intelligence#comments</comments>
		<pubDate>Tue, 01 Jul 2008 03:27:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[DataWarehousing]]></category>

		<category><![CDATA[Business Inteligence]]></category>

		<category><![CDATA[Data Warehouse]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/is-data-warehousing-essential-to-business-intelligence</guid>
		<description><![CDATA[Is Data Warehousing Essential to Business Intelligence? 
The role of data warehousing is changing as companies move toward using new business intelligence approaches.
Over the last few issues of this newsletter, I have been writing about the impact of Enterprise 2.0 approaches on business intelligence (BI). I intended this time to write about how business intelligence [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Is Data Warehousing Essential to <a href="http://www.infopurple.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">Business Intelligence</a>?<br /></strong> <br />
The role of data warehousing is changing as companies move toward using new <a href="http://www.appsbi.com"  class="alinks_links" onclick="return alinks_click(this);" title=""  style="padding-right: 13px; background: url(http://www.infopurple.com/wp-content/plugins/alinks/images/external.png) center right no-repeat;" rel="external">business intelligence</a> approaches.</p>
<p>Over the last few issues of this newsletter, I have been writing about the impact of Enterprise 2.0 approaches on business intelligence (BI). I intended this time to write about how business intelligence and data warehousing can exploit the growing amount of business content generated by Enterprise 2.0 collaborative and social networking technologies. I decided, however, that before I could do this, I first needed to review the role of data warehousing in BI projects; because as companies move toward using new BI approaches (operational BI, for example), this role is changing.</p>
<p>The title of this article is deliberately provocative. My objective is to encourage business intelligence professionals to consider the role of data warehousing in new BI projects. In the past, data warehousing has been the cornerstone for such projects; but I believe that in many situations, this is no longer true.</p>
<p><strong>A Historical Perspective</strong><br />
Essentially, there are three main types of IT processing involved in running the business: business transaction processing, business intelligence processing and business collaboration processing. Business transaction applications run day-to-day business operations, while BI applications analyze those operations with the objective of optimizing and improving them. Collaboration systems enable business users to share information and expertise about business operations.</p>
<p>Prior to the introduction of the concept of business intelligence, most companies analyzed their business operations using decision support applications that queried and reported directly on data stored in business transaction databases. There were several problems with this approach. The five key ones are: 1) the data was not usually in a suitable form for reporting, 2) the data often had quality issues, 3) decision support processing degraded business transaction performance, 4) data was often dispersed across many different systems, and 5) there was a general lack of historical information.</p>
<p>Data warehousing was introduced to help solve these data and performance issues. While there is no question that data warehousing helped improve business decision making, it is important to realize, nevertheless, that it was introduced primarily to solve design issues in business transaction systems, and also for performance reasons.</p>
<p>The emergence of business intelligence and business performance management (BPM) applications and tools further enhanced business decision making by giving business users simpler interfaces, improved data analysis features, and the ability to compare actual and planned performance. Although business intelligence and business performance management applications typically process data in a data warehouse, this is only because of the five issues outlined earlier concerning direct access to business transaction data. If these issues could be resolved, then there would be no need for a data warehouse.</p>
<p><strong>Traditional Business Intelligence<br /></strong> Traditionally, business intelligence has been used for many years for strategic and tactical decision making. This type of processing involves intensive analytical processing of historical and summarized data managed in an enterprise data warehouse. Data performance issues caused by centralizing data in an enterprise data warehouse have led to the creation of data marts, which solve performance problems by spreading the BI processing across multiple data stores.</p>
<p>The problem with data marts is that organizations often build them directly from business transaction databases, rather than the enterprise data warehouse. This is because it is often quicker and easier to build a data mart than to incorporate additional data into the enterprise data warehouse and then build the data mart from the data warehouse. Another problem is that many organizations have more than one “enterprise” data warehouse. Multiple disconnected data warehouses and data marts leads to data consistency issues, which data warehousing was supposed to solve in the first place.  </p>
<p>There are many articles written about the problems of building dozens of independent data marts directly from operational data, and I will not discuss these problems here. It is worth pointing out, however, that a data mart solves most of the same issues addressed by an enterprise data warehouse with the exception that decisions sourced from multiple data marts may be inconsistent in the same way that decisions based on multiple business transaction databases can be inconsistent. This multisource issue could be mitigated by first integrating the business transaction data, for example, into an operational data store or master data store. The issue of historical data would have to be addressed, but this is solvable.</p>
<p><strong>Historical Data and Current Data</strong><br />
The distinction between current data and historical data should be easy to define, but it is not. Data in a business transaction data store is usually current, while data in a data warehouse is usually considered to be historical. The issue here is, “What is meant by current and historical?” Let’s look at an example.</p>
<p>If I have multiple telephone accounts with a telephone company, then (in simplistic terms) the company will have a record showing my customer data, and a record for each of my accounts listing the telephone number, account balance, billing data and so forth. When I make a telephone call, send a text message or access the Internet, I create a call data record (CDR) that can be collected with other CDRs to analyze customer calling patterns, detect fraud, etc.</p>
<p>At any given moment in time, the customer and account records will show the latest information about my current status. This can be considered to be current data. As this data is updated with new address and account data, the old data may be captured into a data warehouse for analysis purposes. The capturing process may be done at particular moments in a time (a snapshot), or continuously, depending on how the data will be analyzed. Regardless, the data in the data warehouse is historical.</p>
<p>The CDR data is a different situation. In general, once I make a phone call, the CDR for that call never changes. When a telephone company captures the CDR into a data store for analysis, is the data current or historical data? The answer is it is current data because even though the data ages over time, it is always the current version of the data. What name do we give the CDR data store? I suspect most people would call it a data mart. Is this the correct term? Does it really matter what we call it, other than the fact some people have the need to give things labels? Regardless, we most probably don’t want to keep the CDR data in an enterprise data warehouse. It is useful, however, to keep a historical record of the CDR analysis results because this shows trends and patterns over time.</p>
<p>If the CDR information is used to detect fraud, then the quicker the analysis can be done, the faster fraud can be detected. The business intelligence application can process the data in-flight as it flows through the system, or can analyze it in a persistent data store that is updated continuously with the CDR data. Data mining of past CDR records can help set up the business rules for doing this detection. This fraud detection application is a good example of an operational BI application.</p>
<p><strong>Operational Business Intelligence</strong><br />
There are a growing number of operational business applications similar to those described previously for CDR analysis. The business benefit of these applications is that they can help companies become more agile by analyzing data during intra-day operations. The ultimate example of this type of processing is algorithmic trading, which employs complex event processing (CEP) and stream analytics to optimize trading operations. The response time of these analyses are a fraction of a second. In this type of processing, it is not feasible, or even necessary, to store the huge volumes of data involved in a data warehouse. The results of BI processing, however, may be kept for future use.</p>
<p>The model for many operational business intelligence applications is capture data, analyze data, persist results (i.e., they analyze data before persisting it). This is different from the traditional BI model of capture data, persist data, analyze data, persist results. BI applications that analyze Web traffic and business activity on commercial websites to track buying trends, optimize prices, and so forth is another example of operational BI. Although these applications analyze data in-flight, they may also use historical data in a data warehouse to assist in the analysis.              </p>
<p>Why is this discussion important? The main reason is at present, business intelligence is synonymous with data warehousing. This thinking is wrong and needs to be changed. Data warehousing is a component of business intelligence, but business intelligence may employ data in other data stores. In some cases, a BI application may not even use data managed in a data warehouse. The tight connection between business intelligence and data warehousing is causing terms such as virtual data warehousing and virtual BI to be used to describe other types of BI processing. These terms are unnecessary and just confuse everybody.</p>
<p>Another issue is that people have forgotten that data warehousing was created to overcome deficiencies in business transaction systems. Many of these issues are now solvable. My concern is that data warehousing has become a system in its own right and that companies are now extending the data warehouse into other application areas such as master data management and content management. This is completely the wrong direction and must be argued against.</p>
<p>The bottom line is that data warehousing is still an important component of business intelligence, but it is no longer the foundation on which all BI projects have to be built.</p>
<p>original article by Colin White</p>
<p>&gt;&gt;read more&gt;&gt; <strong><a href="http://www.b-eye-network.com/view/7344" target="_blank">here</a></strong></p>
<div style="width:160px ; text-align:center;">
     <script type="text/javascript">
      google.load("visualization", "1", {packages:["gauge"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() 
	  {
        var data = new google.visualization.DataTable();
        data.addColumn("string", "Label");
        data.addColumn("number", "Value");
        data.addRows(1);
        data.setValue(0, 0, "Comments");
        data.setValue(0, 1, 0);
		var chart = new google.visualization.Gauge(document.getElementById("curr_comments_chart_div"));
        var options = {width: 100
, height: 160
, min:0
, max:10
, redFrom: 0
, redTo: 1
, yellowFrom:1
, yellowTo: 4
, greenFrom:4
, greenTo:10
};
        chart.draw(data, options);
      }
    </script><br />
	<center><a href="http://www.infopurple.com">
<div id="curr_comments_chart_div"></div>
<p></a></center></p>
<div><a href="http://www.infopurple.com">Comments of this Post</a></div>
<div>Add your opinion - this will move the pointer</div>
<div style="font-size:75%">get <a href="http://www.dashboardzone.com" target="_blank">dashboard</a> plugin?</div>
<p>
	</div>
]]></content:encoded>
			<wfw:commentRss>http://www.infopurple.com/is-data-warehousing-essential-to-business-intelligence/feed</wfw:commentRss>
		</item>
		<item>
		<title>Interview Questions - Oracle AR (Functional)  -Accounts Receivables 03</title>
		<link>http://www.infopurple.com/interview-questions-oracle-ar-functional-accounts-receivables-03</link>
		<comments>http://www.infopurple.com/interview-questions-oracle-ar-functional-accounts-receivables-03#comments</comments>
		<pubDate>Tue, 01 Jul 2008 00:52:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Interview Questions(&amp; answers)]]></category>

		<category><![CDATA[Oracle Apps]]></category>

		<category><![CDATA[Interview Questions and Answers]]></category>

		<guid isPermaLink="false">http://www.infopurple.com/interview-questions-oracle-ar-functional-accounts-receivables-03</guid>
		<description><![CDATA[Interview Questions - Oracle AR (Functional)
 Accounts Receivables Interview Questions AND aSWERS

some of the questions and answers listed here might repeat .from
http://www.infopurple.com/interview-questions-oracle-ar-functional-accounts-receivables-02
http://www.infopurple.com/interview-questions-oracle-ar-functional-accounts-receivables-01
1. How do you create a Chargeback Invoice ?
A. Using Receipts window
2. How do you adjust the amount of advance already received against an Invoice ?A. Create an Invoice for Deposit and receive an [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Interview Questions - Oracle AR (Functional)<br />
 Accounts Receivables Interview Questions AND aSWERS</strong></p>
<p>
some of the questions and answers listed here might repeat .from</p>
<p><a href="http://www.infopurple.com/interview-questions-oracle-ar-functional-accounts-receivables-02">http://www.infopurple.com/interview-questions-oracle-ar-functional-accounts-receivables-02</a></p>
<p><a href="http://www.infopurple.com/interview-questions-oracle-ar-functional-accounts-receivables-01">http://www.infopurple.com/interview-questions-oracle-ar-functional-accounts-receivables-01</a></p>
<p><strong>1. How do you create a Chargeback Invoice ?</strong><br />
A. Using Receipts window</p>
<p><strong>2. How do you adjust the amount of advance already received against an Invoice ?<br /></strong>A. Create an Invoice for Deposit and receive an amount against this deposit Invoice. Then Create the regular invoice and in the column of Commitments enter the number of Deposit Invoice. The Regular Invoice gets matched with the Deposit Invoice for the amount of Regular invoice or deposit invoice which ever is lower</p>
<p><strong>3. How do you write off small amounts while accounting the receipt against an invoice?</strong><br />
A. Using Receipts window. You have the button for write offs.</p>
<p><strong>4. How do you Account for bank charges deducted from amount received against an invoice?<br /></strong>A. Using Quick cash window also you can enter receipts. Here you have the option of accounting the bank charges deducted on receipt. However, this has to be enabled by putting the Value in profile option AR: Create Bank Charges = YES.</p>
<p><strong>5. How do you create a credit note against an invoice ?</strong><br />
A