<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SAP Experts: VMware Virtualization &#124; Consulting &#124; Integration - DataXstream &#187; SAP Basis Blog</title>
	<atom:link href="http://www.dataxstream.com/category/sap-consultants-blog/sap-technical/sap-basis-blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dataxstream.com</link>
	<description>SAP Certified Consultants</description>
	<lastBuildDate>Sat, 04 Feb 2012 05:00:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Web Dynpro Basics: Context and Binding</title>
		<link>http://www.dataxstream.com/2012/01/web-dynpro-basics-context-and-binding/</link>
		<comments>http://www.dataxstream.com/2012/01/web-dynpro-basics-context-and-binding/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 21:22:04 +0000</pubDate>
		<dc:creator>Michael Champion</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP ABAP Blog]]></category>
		<category><![CDATA[SAP ABAP Performance]]></category>
		<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP Basis Performance]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP PI Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[Web Dynpro]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=10302</guid>
		<description><![CDATA[This is for those who are new to Web Dynpro programming. Here is an explanation of how to set up a Web Dynpro application using the context and binding the context to User Interface (UI) elements of the application. This is only a basic explanation to help set a foundation for understanding Web Dynpro programming. [...]]]></description>
			<content:encoded><![CDATA[<p>This is for those who are new to Web Dynpro programming. Here is an explanation of how to set up a Web Dynpro application using the context and binding the context to User Interface (UI) elements of the application. This is only a basic explanation to help set a foundation for understanding Web Dynpro programming. The 3 basic elements of a Web Dynpro application are windows, views and the context. The window is simply a container for a view. To assign a view to a window expand the views and windows under the section labeled ‘Object Name.’ Double click on a window and then drag and drop the view into the window.<span id="more-10302"></span><br />
<a href="http://www.dataxstream.com/wp-content/uploads/1-web-dynpro.jpg" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone  wp-image-10315" title="1 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/1-web-dynpro-1024x611.jpg" alt="" width="617" height="367" /></a><br />
The views hold the visual content (i.e. buttons, tables, headers). Once a view is created and populated with UI elements, the text values of some of these elements can be hard coded (via the UI element’s properties)<br />
<a href="http://www.dataxstream.com/wp-content/uploads/2-web-dynpro.jpg" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone  wp-image-10314" title="2 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/2-web-dynpro-1024x554.jpg" alt="" width="617" height="334" /></a><br />
Or they can be populated dynamically during runtime. Certain elements can ONLY be populated during runtime, such as a table. The text of a button can be set by entering a string value into the ‘text’ property of the element when in the layout tab of the view, for example ‘Hello World’.</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/3-web-dynpro.jpg" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone  wp-image-10316" title="3 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/3-web-dynpro-1024x666.jpg" alt="" width="617" height="402" /></a></p>
<p>For the element that’s text cannot be hardcoded or the element that’s visibility needs to change during runtime, the context needs to be used. The data that is seen on the screen is not stored within the web browser itself. The Web Dynpro application makes calls to the server to retrieve data to be displayed. This is where the context comes into play. The context is the memory on the server that stores data for the Web Dynpro application. When setup correctly a context can hold tables, structures or single element variables. Here is an example of how to build a context and then make method calls to read or set the context.</p>
<p>Select the ‘Context’ tab. Right click on the context node and select ‘Create’ -&gt; ‘Node’ and fill out the fields according to the picture below.<a href="http://www.dataxstream.com/wp-content/uploads/4-web-dynpro.jpg" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone  wp-image-10308" title="4 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/4-web-dynpro-1024x682.jpg" alt="" width="617" height="411" /></a></p>
<p>Right click on the BUTTON_PROPERTIES node and select ‘Create’ -&gt; ‘Attribute.’<br />
<a href="http://www.dataxstream.com/wp-content/uploads/5-web-dynpro.jpg" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone  wp-image-10309" title="5 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/5-web-dynpro-1024x682.jpg" alt="" width="617" height="410" /></a></p>
<p>Now we have created an attribute in the context that will hold a string value. By the names I have given to the node and the attribute you can guess that this node will hold any attributes related to the button we created. The attribute that we created will be used to hold text value of the button.</p>
<p>Now that the context attribute has been created, let’s fill it with a value. Go back to the button properties under the ‘Layout’ tab and find the ‘onAction’ properties under ‘Events.’ Click the create button, it looks like a white piece of paper with the top right edge folded down, and fill in the fields as below.<br />
<a href="http://www.dataxstream.com/wp-content/uploads/6-web-dynpro.jpg" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone  wp-image-10310" title="6 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/6-web-dynpro-1024x666.jpg" alt="" width="617" height="401" /></a><br />
Double click on the name of the new action we just created, SHOW_TEXT and this will take you to the methods tab. Here we are going to use the Web Dynpro Code Wizard to set the value of the attribute.<br />
Click on the Web Dynpro Code Wizard icon (or Ctrl +F7), select ‘Read’, click and select the attribute that was created, TEXT. (Illustrated Below)<br />
<a href="http://www.dataxstream.com/wp-content/uploads/7-web-dynpro.jpg" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone  wp-image-10311" title="7 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/7-web-dynpro-1024x611.jpg" alt="" width="617" height="368" /></a><br />
Now repeat the same steps starting with the Web Dynpro Code Wizard except this time select ‘Set’ instead of ‘Read.’ Each time the Web Dynpro Code Wizard is used DATA variables are created.</p>
<p><strong>Note: If there are multiple attributes within a node, all of the attributes can be read or set at once by selecting the node.</strong></p>
<p>After using the Web Dynpro Code Wizard the second time we now have two copies of the data variables that will not compile. Select the second set and delete them and in place put the following code:<br />
<a href="http://www.dataxstream.com/wp-content/uploads/7.1-web-dynpro.jpg" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone size-full wp-image-10313" title="7.1 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/7.1-web-dynpro.jpg" alt="" width="717" height="693" /></a><br />
Now if the application was tested the value of the attribute TEXT would be changed  between ‘Hide Text’ and ‘Show Text’ every time the button is pushed.</p>
<p>That is the rundown of how to build, read and set the context’s nodes and attributes. Now the context needs to be linked or ‘bound’ to the UI elements. Go back to the Layout tab and select the button. Under the properties find the ‘Text’ property. Click the yellow box to the right of the property and select the attribute to create the binding .</p>
<p><strong>Binding</strong></p>
<p>Binding is linking the data in the context to the UI elements. Here we have created an attribute that holds text. The ‘Text’ property of the button is set to the value within that property. Activate the Web Dynpro Component, create an application and test it.</p>
<p>For a little extra practice, add a TextView by dragging and dropping into the layout or right clicking on ROOTUIELEMENTCONTAINER and selecting ‘Insert Element.’ In the properties section set the Text value to ‘Now you see me!’ Create another node and attribute for the TextView by going to the ‘Context’ tab and right clicking on the ‘Context’ node and selecting ‘Create’ -&gt; ‘Node’. Then create the attribute with the properties below.<br />
<a href="http://www.dataxstream.com/wp-content/uploads/8-web-dynpro.jpg" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone  wp-image-10312" title="8 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/8-web-dynpro-1024x666.jpg" alt="" width="617" height="401" /></a></p>
<p>Go to the ‘Methods’ tab and go into the method we was worked on earlier, ONACTIONSHOW_TEXT. Place the cursor after the ‘if’ statement that was put in, approximately line 33. Use the code wizard to set the new context we made. Then cut and pasted the DATA declarations just created and move them up to the top of the code. Then edit the ‘if’ statement to look like this:<br />
<a href="http://www.dataxstream.com/wp-content/uploads/9-web-dynpro.png" rel="shadowbox[sbpost-10302];player=img;"><img class="alignnone  wp-image-10317" title="9 web dynpro" src="http://www.dataxstream.com/wp-content/uploads/9-web-dynpro.png" alt="" width="504" height="370" /></a></p>
<p>Return to the ‘Layout’ tab, select the TextView and set the ‘Visible’ property to the new attribute. Activate the Web Dynpro Component and test the application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2012/01/web-dynpro-basics-context-and-binding/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SAP Data Migration – The Data Migration Plan (Part 2)</title>
		<link>http://www.dataxstream.com/2010/08/sap-data-migration-the-data-migration-plan-2/</link>
		<comments>http://www.dataxstream.com/2010/08/sap-data-migration-the-data-migration-plan-2/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 13:45:54 +0000</pubDate>
		<dc:creator>Mike Salvo</dc:creator>
				<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP Functional]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Project Management]]></category>
		<category><![CDATA[SAP Strategy]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[SAP Testing]]></category>
		<category><![CDATA[sap upgrade]]></category>
		<category><![CDATA[ALE]]></category>
		<category><![CDATA[Basis/Netweaver]]></category>
		<category><![CDATA[Change Pointers]]></category>
		<category><![CDATA[Data Migration]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[IDOC]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[Mike Salvo]]></category>
		<category><![CDATA[NetWeaver]]></category>
		<category><![CDATA[Project Management]]></category>
		<category><![CDATA[SAP testing]]></category>
		<category><![CDATA[upgrades]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=5282</guid>
		<description><![CDATA[If you are responsible for the success of data migration, you will want to build a detailed plan that will walk you through all of the three phases of data migration: pre-data migration preparation, the data migration itself, and post-data migration cleanup.  I like my data migration plan to contain detailed steps that ensure that [...]]]></description>
			<content:encoded><![CDATA[<p>If you are responsible for the success of data migration, you will want to build a detailed plan that will walk you through all of the three phases of data migration: pre-data migration preparation, the data migration itself, and post-data migration cleanup.  I like my data migration plan to contain detailed steps that ensure that I don’t forget anything.  Each step lists a specific named responsible person along with their area of responsibility and contact information.  Unless I am responsible for executing the task myself, I prefer the named person to be a client employee (i.e. the business owner of the process) rather than a project consultant.    This is where the responsibility should be, and it requires that the business process owners actually participate in the activity rather than sit on the sidelines and watch.</p>
<p><span id="more-6098"></span>Before you embark on your project’s first data migration test cycle, your data migration plan will probably start out as a simple list of preparation steps, data load dependencies, and cleanup steps.  As you progress through your several data migration test cycles, your plan should evolve into a rather complex list containing load methods, responsible persons, historical data volumes, historical execution times, steps that need to be modified and additional steps that need to be added.</p>
<p>I always find it rather interesting to compare the very first plan to the plan that is actually used in the cutover process.  Many project factors will cause you to amend your data migration plan.  Newly-discovered gaps, changes in the business requirements, the decision to load all of the legacy customers instead of only those customers which have been active for the past two years, and toggling back and forth between “should this one be a manual or an automated load” are only a few.   Always keep in mind that the goal in amending the plan is to keep it compatible with the changing requirements of the project.</p>
<h2>The Data Migration Preparation Phase</h2>
<p>Before you actually start the data migration main course, you will probably want to execute a series of preparation steps.  Some of these preparation steps may have a significant lead time; while others may require a system reboot to take effect.  Make sure that you carefully plan accordingly.  Here are some data migration preparation steps that I have found useful:</p>
<ul>
<li><strong>Obtain a Data Migration Login</strong><br />
Obtain a special data migration login, with all of the authorizations needed to execute all of the required tasks.  This login is only to be used during the data migration process, and is to be deleted upon the completion of the data migration process. Using the data migration login makes identification of migrated data very easy both now and several years down the road.  It also facilitates implementing a general user lockout while the data migration user is performing data migration activities.</li>
<li><strong>Technical client preparation</strong><br />
The BASIS team may want to configure the data migration target client to have less dialog processes and more background and update processes.  This configuration can significantly improve data migration performance, especially if you have the opportunity to parallel process IDOCs.  In a Virtual Machine environment, the infrastructure team can even provision additional processors and memory.  You may also need additional disk space to handle large upload files, and any intermediate files that a load program might need to create.</li>
<li><strong>Configuration for IDOC processing</strong><br />
If a data migration process involves creating and processing IDOCs, you may need to configure the ports, partner profiles, message types, and processing modules.  My preference for IDOC triggering is by using the ABAP program RBDAPP01 rather than immediate triggering.  This allows me to exercise the most scheduling control over the background processing options.</li>
<li><strong>Change Pointers</strong><br />
During a data migration turn off change pointers.  Creating what could potentially be hundreds of thousands of change pointer records that are never going to be processed is an overhead burden on system performance and disk space that you do not need.  If the migrated data needs to be sent to external systems, manually send the data <em>after</em> the data migration is complete.</li>
<li><strong>Set the Correct Open Posting Period</strong><br />
Some of the transactional data will want to post into an open financial or manufacturing posting period.  You will want someone from the business to make sure that the correct posting periods are open for business.</li>
<li><strong>Configuration Settings</strong><br />
Sometimes, special temporary functional configuration settings are made to facilitate the data migration process.  Several functional analysts may be responsible identifying and setting these prior to the start of data migration.  As these are temporary configuration settings, it is expected that they will be set to their production values after the data migration is complete.</li>
<li><strong>Basic Setup Data</strong><br />
Some data migration objects are dependent on reference data – a template from which new data migration objects can obtain some of their default values.  You will want to make sure that those who are responsible for setting up this reference data have completed their task before you start the actual data migration.  Sometimes this data is moved from the Golden Client into the target client via ALE, so you may need to set up RFC destinations, ports, distribution models, etc.</li>
<li><strong>General user lockout</strong><br />
All users except for the data migration user should be locked out of the data migration client during the actual data migration activity.  It is impossible to verify that we moved exactly $15,386,254.23 in inventory from the source system to the target system if users are performing material movements in either system during the conversion.</li>
<li><strong>Connections to External Systems</strong><br />
Depending on what connections to external systems are doing, you may want to make sure that they are disconnected prior to the start of data migration.  This will ensure that inbound interfaces, which may either modify existing migrated data or add new data, are disabled.</li>
</ul>
<h2>The Data Migration Phase</h2>
<p>When all of the preparation steps are complete, it is time to start the actual data migration.  Data must be loaded into the target system in a certain sequence that is dictated by their data dependencies.  Customers must exist before sales orders can be migrated, vendors must exist before purchase orders, materials must exist before either sales orders or purchase orders, etc.  This dependency exercise varies a bit from project to project, and should have already been determined well before you start loading the data.</p>
<p>Automated data migration tasks for a single object (e.g. customer master data) usually include some or all of the following:</p>
<ol>
<li>Creation of an upload file from the source system</li>
<li>Technical validation of the upload file</li>
<li>Functional validation of the upload file</li>
<li>Execution of a technical object to load the data into the target system</li>
<li>Technical validation of the migrated data</li>
<li>Functional validation of the migrated data</li>
<li>Collection and reporting of load statistics</li>
<li>Analyzing the fallout</li>
<li>Correcting the fallout</li>
<li>Reprocessing  the fallout</li>
</ol>
<h3>Checkpoints</h3>
<p>At a higher level, the data migration plan will string together an end to end list of all of data migration objects.  I strongly suggest that you study the list and judiciously intersperse several checkpoints at appropriate places in the plan.  A checkpoint is an activity where all interested parties meet to review status and metrics, and to determine whether or not to proceed forward.  Keep in mind that what fails to load early in the plan will geometrically cascade into larger fallout later in the plan.  That single vendor which failed to load may cause several hundred open purchase orders to also fail.  And while the business owner of the vendor master data may think the fallout of a single vendor to be quite insignificant, the business owner of open purchase orders may have an entirely different perspective.  It is important here to make sure that all of the right stakeholders are participating, and that all are in agreement about whether or not to proceed.</p>
<h3>Backup or Restore Points</h3>
<p>Another activity that you should judiciously sprinkle into the plan is several backup or restore points.  It is very painful to have successfully navigated seventy-five percent of the data migration plan, only to have the next load create a huge and unrecoverable mess in the target system.  Without a backup or restore point available, you may have to wipe the slate clean and restart the entire data migration process again.</p>
<p>Depending on the target system and the facilities available, the backup or restore point could be a full system backup, a client copy, or a virtual machine snapshot.  Whatever the means, make sure it is a part of your plan.  It’s really great if you don’t need it.  It’s also really great to have if you do need it!</p>
<h3>The Data Migration Cleanup Phase</h3>
<p>When the data migration loads are finally complete, it’s time to exercise a series of cleanup steps.  This is where we:</p>
<ol>
<li>Undo the special temporary settings and configurations that were done prior to the start of the data migration activity.</li>
<li>Adjust the technical configuration of the system to a more user-oriented system with the right amount of dialog, background, and update processes.</li>
<li>Turn change pointers back on.</li>
<li>Allow the general user population to access the system.</li>
<li>Connect the system to its inbound and outbound communication partners.</li>
<li>Disable the data migration user.</li>
<li>Archive those massive upload files.</li>
<li>Delete any intermediate processing data files.</li>
<li>Clean up the IDOC tables if needed.  But first make sure that you do not need to keep the IDOCs  for legal reasons.</li>
</ol>
<h2>An Example Data Migration Plan</h2>
<p>Click on the link below to access an example data migration plan.  This plan is not a complete data migration plan, but is intended to demonstrate format and content.<br />
<a href="http://www.dataxstream.com/dataxstream-sample-data-migration-execution-plan-request/"><strong>Sample Data Migration Plan</strong></a></p>
<h2>Stay tuned!</h2>
<p>In part 3 of this series on Data Migration, I will be discussing how to deal with fallout from automated data loads.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2010/08/sap-data-migration-the-data-migration-plan-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Coming Soon: SAP .NET Connector (NCo) 3.0</title>
		<link>http://www.dataxstream.com/2010/07/sap-net-connector-nco-3-0-overview/</link>
		<comments>http://www.dataxstream.com/2010/07/sap-net-connector-nco-3-0-overview/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 13:40:15 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[SAP ABAP Blog]]></category>
		<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[.Net Connector]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[NCo]]></category>
		<category><![CDATA[SAP .Net Connector]]></category>
		<category><![CDATA[Xstream Connector]]></category>
		<category><![CDATA[XstreamConnector]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=5499</guid>
		<description><![CDATA[SAP is announcing a new version of SAP Connector for Microsoft .NET 3.0 (now called &#8220;NCo 3.0&#8243;). A beta program for selected customers and partners is currently underway (Q3, 2010) with the general release of the software coming soon thereafter.  I will highlight some of the major differences between the SAP Connector for Microsoft .NET [...]]]></description>
			<content:encoded><![CDATA[<p>SAP is announcing a new version of SAP Connector for Microsoft .NET 3.0 (now called &#8220;NCo 3.0&#8243;). A beta program for selected customers and partners is currently underway (Q3, 2010) with the general release of the software coming soon thereafter.  I will highlight some of the major differences between the SAP Connector for Microsoft .NET 2.0 and NCo 3.0 (besides the obvious, and much-needed name-shortening).</p>
<blockquote><p>EDITOR&#8217;S NOTE: NCo 3.0 has now been released.  <a href="http://www.dataxstream.com/2011/01/introducing-sap-net-connector-nco-3-0/">Read more details here.</a></p></blockquote>
<p><span id="more-5499"></span></p>
<h2>NCo 3.0 Logon</h2>
<div>Security got vital improvements in NCo 3.0.  The component handling logon and authentication was redesigned to thwart the following attacks:</div>
<div>
<ul>
<li>The unauthorized reading of sensitive logon data from the .NET configuration file (e.g. app.config).</li>
<li>The potential to create a malevolent application which replaces the customized logon data with it’s own logon data to obtain backend user sessions with different authorizations.</li>
<li>The potential to create a malevolent application which gains access to an open connection that was originally intended for a different application.</li>
</ul>
</div>
<p>One of the new features implemented to combat the malevolent for RFC client attacks is the interface <span style="font-family: Courier;">IDestinationConfiguration</span>.  This interface contains method <span style="font-family: Courier;">IDestinationConfiguration.GetParameters(string destinationName)</span> which allows .NET programmers to provide their own secure method for storing and retrieving logon information, be it encrypted database, encrypted file, or even LDAP.  There is also a corresponding interface and method to secure NCo 3.0 RFC servers.</p>
<p>Additionally, there is updated functionality to support single sign-on (SSO) and X.509 certificates.</p>
<h2>Say Goodbye to Data Containers and Generated Code</h2>
<p>In SAP Connector 2.0, working with RFCs required the generation of proxy code via the SAP .NET Connector design-time tool.  This tool would convert the IMPORTING, EXPORTING, CHANGING, and TABLES parameters from the RFC you were calling/serving to .NET representations of the same.  With NCo 3.0 there is no longer any kind of generated code.  Instead of one generated proxy method for each function module, there is one single <span style="font-family: Courier;">RfcFunction</span> class, whose <span style="font-family: Courier;">Invoke()</span> method dynamically executes every given ABAP function module.  Additionally, all ABAP parameters will be represented by the class <span style="font-family: Courier;">RfcStructure</span> instead of a dedicated generated class for every structure; All tables will be represented by class <span style="font-family: Courier;">RfcTable</span>.  So, instead of hard-coding all of the data and variable bindings statically at design time, NCo 3.0 now handles everything dynamically at runtime.</p>
<p>NCo 3.0 uses SAP&#8217;s data dictionary to determine the function interface for the called RFCs.  While this data is cached locally for performance reasons, NCo 3.0 is robust enough to detect changes in RFC interface signatures so your code will still execute if you&#8217;ve added, deleted, or changed RFC parameters.  If there arises a situation where the dynamic lookup of RFC interface signature is not wanted, there is also an option to hard code the RFC parameter metadata.</p>
<p>The biggest benefit of NCo 3.0&#8242;s new dynamic function handling is that NCo 3.0 no longer has a design-time component.  This releases the Visual Studio version restriction that .NET 2.0 had.  Let me rephrase that, <strong>NCo 3.0 will work with any version of Visual Studio you like!</strong> The only requirement is that at runtime, a .NET Framework version is installed that is compatible with the NCo 3.0 libraries.</p>
<h2>Anxiously Waiting</h2>
<p>NCo 3.0 figures to be a much-needed update to a vital SAP integration technology.  I, for one, cannot wait for the new functionality to be generally released.  Once NCo 3.0 is released we&#8217;ll be posting blogs highlighting the new features.  We&#8217;ll also include helpful information regarding a .NET Connector 2.0 to NCo 3.0 upgrade.  In the meantime, if you have any leave any questions or comments you have regarding NCo 3.0 below.  You may also email me directly at <span class="mh-email">csta<a href='http://www.google.com/recaptcha/mailhide/d?k=01NvHbOaIcE_hinzIpcpzZQQ==&amp;c=2sqVLQgd7lYWASsTIrUumIH5gCbE09il9SNcQyxGWDs=' onclick="window.open('http://www.google.com/recaptcha/mailhide/d?k=01NvHbOaIcE_hinzIpcpzZQQ==&amp;c=2sqVLQgd7lYWASsTIrUumIH5gCbE09il9SNcQyxGWDs=', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">...</a>@dataxstream.com</span> if you&#8217;d like to set up a detailed conversation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2010/07/sap-net-connector-nco-3-0-overview/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Taxes and TemSe</title>
		<link>http://www.dataxstream.com/2010/04/taxes-and-temse/</link>
		<comments>http://www.dataxstream.com/2010/04/taxes-and-temse/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 13:00:00 +0000</pubDate>
		<dc:creator>Wess Tobler</dc:creator>
				<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[Basis/Netweaver]]></category>
		<category><![CDATA[FB_CALL_HANDLE]]></category>
		<category><![CDATA[NetWeaver]]></category>
		<category><![CDATA[PU19]]></category>
		<category><![CDATA[RAISE_EXCEPTION]]></category>
		<category><![CDATA[RSTS_WRITE]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAP Security]]></category>
		<category><![CDATA[SAPLSTMS]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[TemSe]]></category>
		<category><![CDATA[Wess Tobler]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=4555</guid>
		<description><![CDATA[Recently while supporting my current client, I was tasked with solving a rather puzzling issue an end user was experiencing. While using T-Code PU19, the user would receive: This would, in turn, generate a short dump: My initial thought was that this was a TemSe issue, meaning it was a true BASIS issue.  Upon further [...]]]></description>
			<content:encoded><![CDATA[<p>Recently while supporting my current client, I was tasked with solving a rather puzzling issue an end user was experiencing.  While using T-Code PU19, the user would receive:</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2010/03/TemSe-error-PNG1.png" rel="shadowbox[sbpost-4555];player=img;"><img class="alignnone size-full wp-image-4554" src="http://www.dataxstream.com/wp-content/uploads/2010/03/TemSe-error-PNG1.png" alt="" width="454" height="167" /></a></p>
<p><span id="more-4555"></span>This would, in turn, generate a short dump:</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2010/03/TemSe-shortdump-PNG3.png" rel="shadowbox[sbpost-4555];player=img;"><img class="alignnone size-full wp-image-4550" src="http://www.dataxstream.com/wp-content/uploads/2010/03/TemSe-shortdump-PNG3.png" alt="" width="657" height="618" /></a></p>
<p>My initial thought was that this was a TemSe issue, meaning it was a true BASIS issue.  Upon further examination, I came to the conclusion that it was actually a security/access issue.  The user did not have create rights for TemSe.  Find the Role path Basis: Administration -&gt; TemSe: Actions on TemSe objects -&gt; TemSe: Action ID for Authorization and make sure that the user has the value &#8220;CRE&#8221; (for create).</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2010/03/Authorizations-PNG2.png" rel="shadowbox[sbpost-4555];player=img;"><img class="alignnone size-full wp-image-4553" src="http://www.dataxstream.com/wp-content/uploads/2010/03/Authorizations-PNG2.png" alt="" width="555" height="289" /></a></p>
<p><img src="/DOCUME%7E1/wtobler/LOCALS%7E1/Temp/moz-screenshot.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2010/04/taxes-and-temse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command Line Driven Transporting Using the ‘tp’ Command</title>
		<link>http://www.dataxstream.com/2009/12/cli-transports/</link>
		<comments>http://www.dataxstream.com/2009/12/cli-transports/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 05:00:18 +0000</pubDate>
		<dc:creator>Wess Tobler</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[Basis]]></category>
		<category><![CDATA[Basis/Netweaver]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[DXS]]></category>
		<category><![CDATA[NetWeaver]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAP Basis]]></category>
		<category><![CDATA[STMS]]></category>
		<category><![CDATA[tp]]></category>
		<category><![CDATA[transport]]></category>
		<category><![CDATA[Wess Tobler]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=3353</guid>
		<description><![CDATA[Sometimes you need to have a little more granual control over your transport management.  I've presented two very useful uses of the 'tp' command to be used via the command line interface.]]></description>
			<content:encoded><![CDATA[<p>STMS is a very powerful transaction in the BASIS world.  The whole transport system in SAP is paramount to it&#8217;s functionality.  99% of the time, you will use STMS for your transport needs.  What of that last 1%?  Sometimes it becomes more efficient, or just safer, to have a little more manual control.</p>
<p><span id="more-3353"></span>It is possible to add transport requests to the buffer, and even import them via the CLI (Command Line Interface).  Keep in mind, whenever working on an instance at the OS level, you should be logged in as [sid]adm.</p>
<p>To add transports to the buffer:<br />
<code>tp addtobuffer [transport number] [SID] Client=[client number] pf=/usr/sap/trans/bin/TP_DOMAIN_[DOMAIN_SID].PFL </code></p>
<p>If I wanted to add transport number DV1K907046 to the buffer for Q01 client 400 and the transport domain controller was DV1 the string would look like this:<br />
<code>tp addtobuffer DV1K907046 Q01 Client=400 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL</code></p>
<p>To import transports via CLI:<br />
<code>tp pf=/usr/sap/trans/bin/TP_DOMAIN_[DOMAIN_SID].PFL import [transport number] [SID] U128 client=400 </code></p>
<p>Since I&#8217;ve added DV1K907046 to the buffer, I can now import it with this string:<br />
<code>tp pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL import DV1K907046 Q01 U128 client=400 </code></p>
<p>It is also possible to create shell or batch scripts from these commands to do multiple transports at one time. I&#8217;ve found that this is when CLI tp management is most effective.<br />
Using your favorite text editor, simply &#8220;stack&#8221; the commands ontop of each other:<br />
<code><br />
tp addtobuffer DV1K907046 Q01 Client=400 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL<br />
tp addtobuffer DV1K907047 Q01 Client=400 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL<br />
tp addtobuffer DV1K907048 Q01 Client=400 pf=/usr/sap/trans/bin/TP_DOMAIN_DV1.PFL<br />
....<br />
</code><br />
Then save as either a .sh for Unix or .bat for Windows.</p>
<p>The batching approach works for both adding to the buffer and for actual import. It&#8217;s best to seperate each task (addtobuffer in one script, import in another).</p>
<p><span><strong>Q2Q3Y6XJM37U</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/12/cli-transports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Returns Blank Workbooks in SAPGUI</title>
		<link>http://www.dataxstream.com/2009/10/excel-returns-blank-workbooks-in-sapgui/</link>
		<comments>http://www.dataxstream.com/2009/10/excel-returns-blank-workbooks-in-sapgui/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 04:00:16 +0000</pubDate>
		<dc:creator>Wess Tobler</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[report]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAPGUI]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Wess Tobler]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=2618</guid>
		<description><![CDATA[how to change Excel security settings to allow an report to be viewed as a spreadsheet in SAPGui]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t you hate it when you&#8217;re trying to view a report as a spreadsheet in SAPGui and it returns a blank workbook?  The problem could be due a security settings inside of Excel that is preventing the data from being displayed.  It is real easy to fix.  Use the following instructions for your version Microsoft Office.</p>
<p><span id="more-2618"></span></p>
<h3><strong>Office/Excel 2003</strong>:</h3>
<p>Open Excel</p>
<p>Tools -&gt; macro -&gt; security<br />
<img class="alignnone size-full wp-image-2610" src="http://www.dataxstream.com/wp-content/uploads/2009/10/Excel2003_macro_security.png" alt="Excel2003_macro_security" width="409" height="330" /></p>
<p>Security Level tab:<br />
make sure level is set to &#8220;medium&#8221;<br />
<img class="alignnone size-full wp-image-2611" src="http://www.dataxstream.com/wp-content/uploads/2009/10/Security_tab_medium.png" alt="Security_tab_medium" width="380" height="367" /></p>
<p>Trusted Sources tab:<br />
Check the box beside &#8220;Trust access to visual basic project.&#8221;<br />
<img class="alignnone size-full wp-image-2612" src="http://www.dataxstream.com/wp-content/uploads/2009/10/Security_Trusted_Publishers.png" alt="Security_Trusted_Publishers" width="380" height="367" /></p>
<h3><strong>Office 2007</strong>:</h3>
<p>Click the Office button.  Click Excel Options.<br />
<img class="alignnone size-medium wp-image-2614" src="http://www.dataxstream.com/wp-content/uploads/2009/10/2007_Excel-Options1-272x300.png" alt="2007_Excel Options" width="272" height="300" /></p>
<p>Click on Trust Center -&gt; Trust Center Settings<br />
<img src="../wp-content/uploads/2009/10/2007_Excel-Trust-Center1.png" alt="2007_Excel Trust Center" width="633" height="311" /></p>
<p>Check the box beside &#8220;Trust access to VBA project object model&#8221;<br />
<img class="alignnone size-full wp-image-2617" src="http://www.dataxstream.com/wp-content/uploads/2009/10/2007_Excel-Trust-VBA.png" alt="2007_Excel Trust VBA" width="632" height="219" /></p>
<p>Close Excel and try to view your report again.  The workbook should no longer be blank and it should be populated with the correct data.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/10/excel-returns-blank-workbooks-in-sapgui/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Discovering Something Old in SAP – Using an External Program as a Batch Job Step</title>
		<link>http://www.dataxstream.com/2009/10/sapusing-an-external-program-as-a-batch-job-step/</link>
		<comments>http://www.dataxstream.com/2009/10/sapusing-an-external-program-as-a-batch-job-step/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 04:00:15 +0000</pubDate>
		<dc:creator>Mike Salvo</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[batch job]]></category>
		<category><![CDATA[batch script]]></category>
		<category><![CDATA[external program]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[Mike Salvo]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAP ABAP]]></category>
		<category><![CDATA[SM36]]></category>
		<category><![CDATA[SM37]]></category>
		<category><![CDATA[UNIX script]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=2762</guid>
		<description><![CDATA[Occasionally, I have the opportunity to utilize a feature in SAP that I have never used before.  It is not necessarily a new feature, and it may have existed in SAP for several releases.  There are several reasons for ignoring new functionality, but the primary reason that comes to mind is “I’ve always done it [...]]]></description>
			<content:encoded><![CDATA[<p>Occasionally, I have the opportunity to utilize a feature in SAP that I have never used before.  It is not necessarily a new feature, and it may have existed in SAP for several releases.  There are several reasons for ignoring new functionality, but the primary reason that comes to mind is “I’ve always done it this way, I’ve installed hundreds of these, and I know it works”.</p>
<p>Sometimes, a special business or security requirement does not permit the “business as usual” scenario.  It is these situations which nudge me down the path which I have never explored.</p>
<p><span id="more-2762"></span></p>
<p>Take, for example, a simple flat file interface outbound from SAP to an external system.  In the typical scenario, at the 50,000 foot level, it works like this:</p>
<p>In a scheduled batch job step, an SAP ABAP program extracts data and creates a flat file in a folder somewhere on the network that is commonly visible to both SAP and the external system.</p>
<p>The external system acquires the flat file, processes the data and then archives the file, just in case we need to play “where is my data” or “I sent it, why didn’t you get it”.</p>
<p>Here is the process diagram:</p>
<p><img class="aligncenter size-full wp-image-2637" src="http://www.dataxstream.com/wp-content/uploads/2009/10/1-simple-flat-file-interface2.jpg" alt="Simple flat file interface" width="456" height="479" /></p>
<p>In this scenario, OS administrators on both sides of the interface have agreed to grant to the common folder all of the permissions needed so that each side of the interface can perform its tasks.</p>
<p>But what if that is not the case?  What if the external system administrator cannot permit a common SAP/external system mount; but will permit receiving the file via ftp?</p>
<p>Let’s redraw the process diagram:</p>
<p><img class="aligncenter size-full wp-image-2639" src="http://www.dataxstream.com/wp-content/uploads/2009/10/2-flat-file-interface-via-ftp.jpg" alt="2 flat file interface via ftp" width="441" height="693" /></p>
<p>In this scenario, SAP drops the output file into its own outbound network OS folder.<br />
The file is then moved to an inbound network folder on the external system via an ftp script.</p>
<p><span style="background-color: #ffffff;">The question now becomes, how do we execute the ftp script after the first step of the batch job which creates the outbound data file? </span></p>
<p>It turns out that SAP provides a facility to do just that.  Effectively, SAP will allow the ftp script to be entered as a step in a batch job.</p>
<p><span style="background-color: #ffffff;">We begin to assemble our batch job with <strong>SM36</strong> as usual.</span></p>
<p>As shown here, the batch job is named <strong>Z_OUT_INTERFACE_2_EXTERNAL_SYST</strong>.</p>
<p><img class="aligncenter size-full wp-image-2645" src="http://www.dataxstream.com/wp-content/uploads/2009/10/3-define-background-job.jpg" alt="3 define background job" width="599" height="380" /><span style="background-color: #ffffff;">The first step of the batch job executes ABAP program <strong>Z_OUT_MATERIAL_EXTRACT</strong> with variant <strong>PRODUCTION_VAR. </strong></span></p>
<p>This is the step which creates the outbound data file.</p>
<p><img class="aligncenter size-full wp-image-2646" src="http://www.dataxstream.com/wp-content/uploads/2009/10/4-step-list-overview.jpg" alt="4 step list overview" width="558" height="145" /></p>
<p>Once the file is created by the ABAP program in step 1, we would like an ftp script to execute, and copy the file to a folder on the remote system.<br />
SAP allows an <strong>external program</strong> (e.g. our ftp script) to be executed as a batch job step.  We are going to  make this step 2 in our job.<br />
(This is the section of batch job land which I had never before explored.)<br />
To set up an external program as an SAP batch job step, click the <strong>External Program</strong> button.<br />
The External program block is now open for input.</p>
<p><img class="aligncenter size-full wp-image-2647" src="http://www.dataxstream.com/wp-content/uploads/2009/10/5-create-ext-prog-step.jpg" alt="5 create ext prog step" width="586" height="611" /><br />
In the <strong>Name</strong> <strong>box</strong>, enter the complete path name of the location of the external program.<br />
In this case, our external program is an ftp script which takes two input parameters:<br />
1) The complete pathname of the data file.<br />
In this example, the complete pathname is <span>/data/dx1/ftpscript.ksh</span>.<br />
2) The path name and the name of the outbound data file.<br />
In this example, the path name of the outbound data file is /data/dx1/interfaces/materials/outbound,<br />
and the name of the outbound data file is materials.txt.<br />
Both of these parameters are entered in the <strong>Parameter box</strong>.</p>
<p><img class="aligncenter size-full wp-image-2648" src="http://www.dataxstream.com/wp-content/uploads/2009/10/6-ext-prog-name-and-parameters.jpg" alt="6 ext prog name and parameters" width="560" height="106" /></p>
<p>SAP also allows for the external program standard output or error output to be displayed in the SAP job log.<br />
These are turned on/off using control flags.</p>
<p><img class="aligncenter size-full wp-image-2649" src="http://www.dataxstream.com/wp-content/uploads/2009/10/7-control-flags-button.jpg" alt="7 control flags button" width="572" height="613" /></p>
<p>In this example, I have turned on the control flags which allow any standard output and error output from the external program to be displayed in the SAP job log.  I have also set the control flag which requires that the external program complete before the SAP job ends.  If this control flag is not set and there are no further job steps, the SAP job will complete without waiting for the external program.</p>
<p><img class="aligncenter size-full wp-image-2650" src="http://www.dataxstream.com/wp-content/uploads/2009/10/8-control-flag-settings.jpg" alt="8 control flag settings" width="330" height="217" /></p>
<p>Here is the entire SAP batch job with two job steps.<br />
The first step is the ABAP program which creates the outbound data file.<br />
The second step is the ftp script which will ftp the file to the external system.<br />
This is the result that we want.</p>
<p><img class="aligncenter size-full wp-image-2651" src="http://www.dataxstream.com/wp-content/uploads/2009/10/9-job-with-two-steps.jpg" alt="9 job with two steps" width="620" height="117" /></p>
<p>And, for all of you SAP documentation fans, yes, this is documented in SAP.  This documentation describes the external command and external program facilities, as well as the authorizations needed to utilize them.</p>
<p>SAP Documentation about using External Commands and External Programs as batch job steps can be found at:<a href=" http://help.sap.com/saphelp_nw70/helpdata/EN/c4/3a7f2c505211d189550000e829fbbd/content.htm" target="_blank"> http://help.sap.com/saphelp_nw70/helpdata/EN/c4/3a7f2c505211d189550000e829fbbd/content.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/10/sapusing-an-external-program-as-a-batch-job-step/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP TechEd 09 Demo Jam Liveblog Recap</title>
		<link>http://www.dataxstream.com/2009/10/sap-teched-09-demo-jam-liveblog-recap/</link>
		<comments>http://www.dataxstream.com/2009/10/sap-teched-09-demo-jam-liveblog-recap/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 20:33:01 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP ABAP Blog]]></category>
		<category><![CDATA[SAP ABAP Performance]]></category>
		<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP Basis Performance]]></category>
		<category><![CDATA[SAP EDI Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Java Blog]]></category>
		<category><![CDATA[SAP PI Blog]]></category>
		<category><![CDATA[SAP SolMan Blog]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[Liveblog]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[TechEd]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/2009/10/sap-teched-09-demo-jam-liveblog-recap/</guid>
		<description><![CDATA[This blog is a recap of the liveblog of the  SAP TechEd 09 conference Demo Jam. To read in chronological order, start from the bottom and work your way up. Craig Stasila: 8:23 pm on October 13, 2009 Thanks for checking in to the SAP TechEd 09 Demo Jam. I hope you had as much [...]]]></description>
			<content:encoded><![CDATA[<p>This blog is a recap of the liveblog of the  SAP TechEd 09 conference Demo Jam.  To read in chronological order, start from the bottom and work your way up.</p>
<p><span id="more-2773"></span></p>
<div id="postlist" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<div id="prologue-325" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:23 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-325" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Thanks for checking in to the SAP TechEd 09 Demo Jam. I hope you had as much fun as we did.</p>
</div>
</div>
<div id="prologue-324" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:22 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-324" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">And, in a surprise to noone, SAP – No Hands (the beer guys) win in a frothy, delicious, ice-cold, refreshing landslide.</p>
</div>
</div>
<div id="prologue-323" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:22 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-323" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Now Chip is discussing how the video of TechEd is available online. That is all fine and good, but you can’t get the witty commentary from yours truly that way…</p>
</div>
</div>
<div id="prologue-321" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:21 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-321" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">SAP TechEd 09 has 3,500 attendees. A smaller group than in past, but a pretty good crowd, indeed.</p>
</div>
</div>
<div id="prologue-320" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:20 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-320" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-319" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2486" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2486-1024x768.jpg" alt="IMG_2486" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The 2nd round of voting completes</p>
</div>
</div>
<div id="prologue-318" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:18 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-318" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">With a tired, alcohol fueled crowd, one would guess that the beer guys have the inside track. The final three will be judged by head-to-head-to-head cheering.</p>
</div>
</div>
<div id="prologue-317" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:17 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-317" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">And the final three are:<br />
+ Sensor Monitoring for Smart Energy Saving<br />
+ Project Yowie<br />
+ SAP – No Hands (the beer guys)</p>
</div>
</div>
<div id="prologue-315" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:17 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-315" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Chip &amp; Craig must now vamp as the results are tabulated….</p>
</div>
</div>
<div id="prologue-313" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:16 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-313" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-312" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2483" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2483-1024x768.jpg" alt="IMG_2483" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">And the winner of the iPod is: Samir Ghandi.  Congratulations on getting an iPod Touch 32GB.</p>
</div>
</div>
<div id="prologue-311" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:14 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-311" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">That does it for the demo. Now Chip &amp; Craig are on stage to give away an iPod. For all of those reading at home, sorry to burst your bubble, but you did NOT win.</p>
</div>
</div>
<div id="prologue-310" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:14 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-310" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-309" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2481" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2481-1024x768.jpg" alt="IMG_2481" width="691" height="518" /></p>
</div>
</div>
<div id="prologue-308" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:13 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-308" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Now one click of the cost center in SAP will confirm all the POs. Very slick demo AND 1:10 under time!</p>
</div>
</div>
<div id="prologue-307" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:12 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-307" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-306" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2480" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2480-1024x768.jpg" alt="IMG_2480" width="691" height="518" /></p>
</div>
</div>
<div id="prologue-305" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:12 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-305" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The app uses the iPhone camera for goods receipt confirmation verification documentation.</p>
</div>
</div>
<div id="prologue-304" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:11 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-304" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Another iPhone application is demoed. This one is for processing Goods Receipts for purchase orders. MIGO via iPhone!</p>
</div>
</div>
<div id="prologue-303" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:10 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-303" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-302" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2477" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2477-1024x768.jpg" alt="IMG_2477" width="691" height="518" /></p>
</div>
</div>
<div id="prologue-301" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:09 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-301" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The last demo will show a simplified purchasing process that will allow 3-click purchasing.</p>
</div>
</div>
<div id="prologue-300" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:09 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-300" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Demo #7: Simplified Purchasing by John Astill &amp; Gaurav Salkar from SAP Labs</p>
</div>
</div>
<div id="prologue-299" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:09 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-299" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-298" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2476" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2476-1024x768.jpg" alt="IMG_2476" width="691" height="518" /></p>
</div>
</div>
<div id="prologue-297" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:08 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-297" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The beer is a little foamy, but looks delicious. MMMMMM Beeeeeer! Great demo. Best crowd reaction yet. The masses love beer!</p>
</div>
</div>
</div>
<div id="postlist1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<div id="prologue-296" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:07 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-296" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">As he pours the beer, it updates SAP. Very cool, indeed.</p>
</div>
</div>
<div id="prologue-295" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:07 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-295" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Showing a GUI demo of how to set up the consumption of the events. Looks very easy and powerful. Without the smart agent, the beer won’t pour.</p>
</div>
</div>
<div id="prologue-294" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:06 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-294" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">I haven’t seen such intense focus on an object since I was giving my dogs a treat… These people are in a trance because of the beer keg on the stage.</p>
</div>
</div>
<div id="prologue-293" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:05 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-293" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">This demo utilizes Live Enterprise to take the data from the smart agent to SAP. Since this demo involves beer, a quite, uneasy hush has befallen the crowd.</p>
</div>
</div>
<div id="prologue-292" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:04 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-292" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">As integration experts, DataXstream is very familiar with ALE, but this takes SAP + beer to a whole new level.</p>
</div>
</div>
<div id="prologue-291" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:03 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-291" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">They add the smart agent to a 1/4 barrel of beer. Do you think they will notice if I steal it?</p>
</div>
</div>
<div id="prologue-289" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:02 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-289" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">This demo is using a “precise smart agent” to track Sebastian’s position on the stage. I think I need one.</p>
</div>
</div>
<div id="prologue-288" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:02 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-288" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Demo 6: SAP – No Hands by Sebastian Steinhauer &amp; Tobias Queck from SAP Labs</p>
</div>
</div>
<div id="prologue-287" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:02 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-287" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-286" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2470" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2470-1024x768.jpg" alt="IMG_2470" width="691" height="518" /></p>
</div>
</div>
<div id="prologue-285" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:01 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-285" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Lastly, Shahid shows the order in SAP. Every good demo includes the SAP GUI!!!<span> </span><img class="wp-smiley" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; vertical-align: top; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; margin-right: 8px; border-width: initial; border-color: initial; " src="http://live.dataxstream.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
</div>
</div>
<div id="prologue-284" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:00 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-284" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">After ALL that, now Dave is dickering on the price. So the price was dropped 200 euro… Still not enough. Dave drives a hard bargain. Now an additional reduction of 1 euro for each blue shirt. Dave is finally happy with the price and places an order.</p>
</div>
</div>
<div id="prologue-283" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:58 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-283" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">And I want a picture of me pandering to the Demo Jam audience on the back!</p>
</div>
</div>
<div id="prologue-282" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:58 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-282" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">So, Dave says “I don’t want the pocket”. But I do want 5 of them and I want it in blue…</p>
</div>
</div>
<div id="prologue-281" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:57 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-281" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Dave can’t get the shirt he wants because he wants a pocket and logo, but the system will not allow it. Boo Hoo.</p>
</div>
</div>
<div id="prologue-280" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:56 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-280" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Oops. I missed most of the setup. But I was told that this demo will be “cool”</p>
</div>
</div>
<div id="prologue-279" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:55 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-279" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Demo #5: Cool Offline Quote for SAP ERP by Jesper Moller &amp; Shahid Ayub from Configit A/S</p>
</div>
</div>
<div id="prologue-278" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:55 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-278" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-277" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2462" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_24621-1024x768.jpg" alt="IMG_2462" width="691" height="518" /></p>
</div>
</div>
<div id="prologue-276" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:54 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-276" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">It will be available on<span> </span><a style="text-decoration: none; color: #3478e3; " onclick="javascript:pageTracker._trackPageview('/outgoing/enterprisegeeks.com');" rel="nofollow" href="http://enterprisegeeks.com">http://enterprisegeeks.com</a></p>
</div>
</div>
<div id="prologue-275" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:54 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-275" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Now he is saying that his code will be available as a SAPLink Nugget for download (for free) after TechEd.</p>
</div>
</div>
<div id="prologue-274" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:53 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-274" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Brian is looking doing a live demo with data. Very compelling and very powerful given the short nature of the demo.</p>
<div id="postlist2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<div id="prologue-273" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:51 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-273" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Brian has created an ABAP class to communicate with BusinessObjects explorer via the REST protocol. The demo is intended to make the use standard data available to BusinessObjects explorer.</p>
</div>
</div>
<div id="prologue-271" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:50 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-271" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-270" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2462" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2462-1024x768.jpg" alt="IMG_2462" width="691" height="518" /></p>
</div>
</div>
<div id="prologue-269" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:49 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-269" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">This demo is linking ABAP, BusinessObjects Explorer, and the “Cloud”</p>
</div>
</div>
<div id="prologue-268" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:49 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-268" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Demo #4: SAP BusinessObjects Explorer On Demand Made Easy by Brian Dennett from Colgate-Palmolive Comapny</p>
</div>
</div>
<div id="prologue-265" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:48 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-265" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">They’re using Google Wave to look for night clubs in the waning moments of their presentation.</p>
</div>
</div>
<div id="prologue-263" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:47 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-263" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Google Wave makes another appearance.</p>
</div>
</div>
<div id="prologue-261" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:46 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-261" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-266" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2460" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2460-1024x768.jpg" alt="IMG_2460" width="691" height="518" />I’m waiting for these guys to “Pump…. you up!”</p>
</div>
</div>
<div id="prologue-259" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:45 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-259" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-258" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2458" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2458-1024x768.jpg" alt="IMG_2458" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The data can come from ERP, and public data sources.</p>
</div>
</div>
<div id="prologue-257" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:44 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-257" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">This tool exists in a sidebar on your computer. It is based on SAP Business Objects. It automatically looks for data in your active items on the computer and automatically finds and links to them in SAP</p>
</div>
</div>
<div id="prologue-255" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:42 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-255" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">This demo is about email management.</p>
</div>
</div>
<div id="prologue-254" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:41 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-254" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Demo #3: Project Yowie by Mark Kowalkiewicz &amp; Hans Peukert from SAP Research</p>
</div>
</div>
<div id="prologue-253" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:41 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-253" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-252" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2454" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2454-1024x768.jpg" alt="IMG_2454" width="691" height="518" /></p>
</div>
</div>
<div id="prologue-251" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:40 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-251" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Just got it in under the wire. Good presentation Jagdish.</p>
</div>
</div>
<div id="prologue-250" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:40 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-250" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Time. Is. Running. Out.</p>
</div>
</div>
<div id="prologue-249" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:39 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-249" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-248" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2453" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2453-1024x768.jpg" alt="IMG_2453" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">A shot of the iPhone app.</p>
</div>
</div>
<div id="prologue-247" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:38 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-247" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The demo starts with a good ploy. The workflow process starts with a request for an iPhone from a Windows Mobile device. Everybody loves iPhone. Everybody has iPhone lust.</p>
</div>
</div>
<div id="prologue-245" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:36 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-245" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-244" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2450" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2450-1024x768.jpg" alt="IMG_2450" width="691" height="518" /></p>
</div>
</div>
<div id="prologue-243" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:35 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-243" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Jagdish just made a dig at sales representative saying that they always play golf. If I didn’t have a 7am tee time tomorrow, I would stay late and have a word with him…</p>
</div>
</div>
<div id="prologue-242" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:34 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-242" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">This demo is built for the iPhone and is already available. If I get the full URL, I’ll pass it along.</p>
</div>
</div>
<div id="prologue-240" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:33 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-240" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Demo #2: Mobilizing SAP CRM &amp; Workflow on iPhone by Jagdish Bansiya from Sybase Inc.</p>
</div>
</div>
</div>
<div id="postlist3" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<div id="prologue-239" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:33 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-239" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">All-in all a great presentation that showed how-to and the results. Good job Dan &amp; Laurent!</p>
</div>
</div>
<div id="prologue-238" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:32 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-238" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The demo just got a little creepy when the demonstrators started blowing on their remote thermometers to warm them up!</p>
</div>
</div>
<div id="prologue-237" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:31 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-237" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Oh snap! They just showed the temperature in Centigrade!!! I only understand fahrenheit. I’m confused!</p>
</div>
</div>
<div id="prologue-235" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:29 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-235" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-234" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2446" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2446-1024x768.jpg" alt="IMG_2446" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The event-driven designer.</p>
</div>
</div>
<div id="prologue-233" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:28 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-233" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">They are using the Event Driven Designer tool to get temperature entity data and exposing them as business objects.</p>
</div>
</div>
<div id="prologue-232" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:27 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-232" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The first demo is for facility managers by leveraging event-driven BI to save natural resources.</p>
</div>
</div>
<div id="prologue-231" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:26 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-231" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">First Demo: Sensor Monitoring for Smart Energy Saving by Dan Marinescu and Laurent Bride of SAP BusinessObjects</p>
</div>
</div>
<div id="prologue-230" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:25 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-230" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Craig just randomly listed areas of the world. I think he got lost around Asia. That’s OK, Craig, it’s been a long, beer-filled day!</p>
</div>
</div>
<div id="prologue-229" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:25 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-229" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Craig Cmehil and his beer and his beard are on the stage introducing the submissions. He wants all of us to make noise. Go ahead, you people at home. Cheer, shout, jump up and down for your favorite demo. I’m sure the internet will register your vote in some way or another.</p>
</div>
</div>
<div id="prologue-227" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:22 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-227" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Def Leppard is starting off the Demo Jam. Welcome to 1992!</p>
</div>
</div>
<div id="prologue-226" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:21 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-226" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-225" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2443" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2443-1024x768.jpg" alt="IMG_2443" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">A ragtag bunch, indeed.  Congratulations, guys.  You earned it.</p>
</div>
</div>
<div id="prologue-224" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:19 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-224" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Now we’re going over the to SAP community top contributors. There will be too many to cover, but all the top contributers should be proud of their nerdiness!</p>
</div>
</div>
<div id="prologue-223" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:17 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-223" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The Demo Jam was just called “The American Idol for Geeks”</p>
</div>
</div>
<div id="prologue-222" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:17 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-222" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The group to our left is getting a little out of hand. Very little.</p>
</div>
</div>
<div id="prologue-220" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:16 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-220" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">So, the proceedings are finally starting–15 minutes late. I guess they had to wait for everybody to get one more beer in them.</p>
</div>
</div>
<div id="prologue-218" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:15 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-218" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-217" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2440" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2440-1024x768.jpg" alt="IMG_2440" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The vaunted Demo Jam trophy–this is what everybody is fighting for tonight.  The scent of blood is in the air…</p>
</div>
</div>
<div id="prologue-214" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:10 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-214" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-213" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2438" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2438-1024x768.jpg" alt="IMG_2438" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Can you feel the excitement?</p>
<blockquote style="margin-top: 0px; margin-right: 25px; margin-bottom: 15px; margin-left: 25px; padding-top: 0px; padding-right: 25px; padding-bottom: 0px; padding-left: 10px; font-style: italic; color: #888888; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #f7f7f7; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #e6e6e6; border-right-color: #e6e6e6; border-bottom-color: #e6e6e6; border-left-color: #e6e6e6; background-position: initial initial; background-repeat: initial initial; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Thanks to Ariel Thor for being a good sport about being nabbed napping and allowing us to add him to our liveblog!</p>
</blockquote>
</div>
</div>
<div id="prologue-212" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:05 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-212" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">So, I guess Train is the “big musical guest” playing a concert on Thursday. So, umm, yeah. I’ll probably find something else to do at that time.</p>
</div>
</div>
<div id="prologue-211" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:56 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-211" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The conference has provided biodegradable potato-starch based forks. How green!</p>
</div>
</div>
<div id="prologue-210" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:51 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-210" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">So far, the music for the Demo Jam is 100% better than the music for the keynote address earlier today.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="postlist4" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<div id="prologue-209" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:49 pm<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-209" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Welcome to the SAP TechEd 09 Demo Jam. Craig Stasila and Tim Cooper will be bringing you all the hot action from the Demo Jam. We’re getting settled in. Ice cream has been provided (as well as alcoholic beverages). This should be a great time. Glad you could join us!</p>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/10/sap-teched-09-demo-jam-liveblog-recap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP TechEd 09 Keynote Address Liveblog</title>
		<link>http://www.dataxstream.com/2009/10/sap-teched-09-keynote-address-liveblog/</link>
		<comments>http://www.dataxstream.com/2009/10/sap-teched-09-keynote-address-liveblog/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 19:29:30 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP ABAP Blog]]></category>
		<category><![CDATA[SAP ABAP Performance]]></category>
		<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP Basis Performance]]></category>
		<category><![CDATA[SAP EDI Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Java Blog]]></category>
		<category><![CDATA[SAP PI Blog]]></category>
		<category><![CDATA[SAP SolMan Blog]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[Liveblog]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[TechEd]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/2009/10/sap-teched-09-keynote-address-liveblog/</guid>
		<description><![CDATA[This blog is a recap of the liveblog of the keynote address of the SAP TechEd 09 conference.  To read in chronological order, start from the bottom and work your way up. Craig Stasila: 8:57 am on October 13, 2009 If you missed anything, check back for the full blog posting at http://www.dataxstream.com/category/sap-consultants-blog/ Craig Stasila: [...]]]></description>
			<content:encoded><![CDATA[<div class="navigation" style="margin-top: 5px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; text-align: center; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; text-align: left; padding: 0px;">This blog is a recap of the liveblog of the keynote address of the SAP TechEd 09 conference.  To read in chronological order, start from the bottom and work your way up.</p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; text-align: left; padding: 0px;"><span id="more-2769"></span></p>
</div>
<ul id="postlist" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<li id="prologue-204" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:57 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-204" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">If you missed anything, check back for the full blog posting at<span> </span><a style="text-decoration: none; color: #3478e3; " onclick="javascript:pageTracker._trackPageview('/outgoing/www.dataxstream.com/category/sap-consultants-blog/');" rel="nofollow" href="http://www.dataxstream.com/category/sap-consultants-blog/">http://www.dataxstream.com/category/sap-consultants-blog/</a></p>
</div>
</li>
<li id="prologue-203" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:55 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-203" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Well, that’s it. The keynote speeches are over. I hope you enjoyed following along with the DataXstream’s first foray into liveblogging. Make sure you check back tonight at 11pm EDT (8pm PDT) for our liveblog of the Demo Jam.</p>
</div>
</li>
<li id="prologue-202" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:53 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-202" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Ray’s parting shot: Even life expectancy is growing exponentially.</p>
</div>
</li>
<li id="prologue-200" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:52 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-200" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">2029: An intimate merger<br />
$1,000 of computation = 1,000 times the human brain<br />
Reverse engineering of the brain complete<br />
Computers pass the Turing test!!<br />
Skynet goes online (OK, I made this one up)</p>
</div>
</li>
<li id="prologue-199" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:48 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-199" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">There are only about 800 million bytes in the entire genome and it can be compressed into about 50 million bytes. The brain is made up of about 25 million bytes of data.</p>
</div>
</li>
<li id="prologue-197" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:45 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-197" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-195" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2431" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2431-1024x768.jpg" alt="IMG_2431" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The brain is getting reverse-engineered.  Individual brain components (e.g. visual cortex, cerebellum, etc.) are getting reverse engineered by researchers.</p>
</div>
</li>
<li id="prologue-196" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:44 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-196" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Ray is now on Artificial Intelligence (AI). AI is all around us, but we’re too accustomed to it to notice it.</p>
</div>
</li>
<li id="prologue-194" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:42 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-194" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">They already had this technology in the 80s. I saw Innerspace (<a style="text-decoration: none; color: #3478e3; " onclick="javascript:pageTracker._trackPageview('/outgoing/www.imdb.com/title/tt0093260/usercomments');" rel="nofollow" href="http://www.imdb.com/title/tt0093260/usercomments">http://www.imdb.com/title/tt0093260/usercomments</a>)</p>
</div>
</li>
<li id="prologue-193" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:41 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-193" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Someday you will have millions or billions of nano-engineered devices coursing through your body keeping you healthy.</p>
</div>
</li>
<li id="prologue-192" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:40 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-192" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Miniaturization is another exponential trend. “What used to fit in a building now fits in my pocket. What fits in my pocket now will fit inside a cell in a few years”</p>
</div>
</li>
<li id="prologue-191" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:39 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-191" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Ray is now going over how the exponential growth in technology power is also mirrored by exponential decrease in price. RAM, processing power, human genome decoding, wireless devices. All adhere to the exponential growth curve.</p>
</div>
</li>
<li id="prologue-188" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:38 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-188" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-187" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2423" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2423-1024x768.jpg" alt="IMG_2423" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Ray thinks we’re due for a new paradigm shift away from flat integrated circuits.  He’s been talking to Intel about their development of 3D processors.  I’ve not heard of this before, but it sounds very cool.</p>
</div>
</li>
<li id="prologue-185" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:34 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-185" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-184" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2422" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2422-1024x768.jpg" alt="IMG_2422" width="691" height="518" /></p>
</div>
</li>
<li id="prologue-183" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:32 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-183" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Some critics say that exponential growth can’t go on forever. Ray counters that by saying that there can be periods of relatively slow advancements, but over time, progress will catch up.</p>
</div>
</li>
<li id="prologue-181" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:29 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-181" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">You may think that he only picked events that matched his theory. But, now he’s showing another graph comparing his viewpoints with 15 others. There is a very high correlation.</p>
</div>
</li>
<li id="prologue-179" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:27 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-179" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-178" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2419" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2419-1024x768.jpg" alt="IMG_2419" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">From life to now, this chart shows how life and technological advancements have followed a constant, exponential growth.  Both axes are logarithmic.  Very cool, indeed.</p>
</div>
</li>
<li id="prologue-176" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:24 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-176" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-175" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2417" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2417-1024x768.jpg" alt="IMG_2417" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">As big as a washing machine.  Stevie Wonder bought one.  In 2002, it was still a desktop device.  Now, it is a cell-phone based app.</p>
</div>
</li>
<li id="prologue-174" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:21 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-174" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">It took 10 years to bet the first billion phones in the market. Now 2/3 of the world’s population has them!</p>
</div>
</li>
<li id="prologue-173" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:20 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-173" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">“The tools of disruptive change are in everybody’s hands”</p>
</div>
</li>
<li id="prologue-172" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:20 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-172" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Technology is a democratizing force. Back in the day, you had to be a recording studio or movie studio to create content. Now a couple of hundred dollars can be used to create great content.</p>
<ul id="postlist1" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<li id="prologue-171" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:18 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-171" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Back in the 70s, Ray projected that the two-thousand user ARPAnet would grow into a million user internet in the 90s. Umm. Yeah. I saw that coming, too!</p>
</div>
</li>
<li id="prologue-170" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:17 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-170" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Exponential growth even applies to solar energy. Solar energy may be a fringe player now, but Ray sees it growing.</p>
</div>
</li>
<li id="prologue-169" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:16 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-169" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">This exponential growth is unaffected by any financial or other external pressures.</p>
</div>
</li>
<li id="prologue-168" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:15 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-168" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">There are many underlaying properties of technology (MIPS, # of bits, # of genomes typed). Regardless of the property, technology follows a smooth exponential growth.</p>
</div>
</li>
<li id="prologue-167" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:13 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-167" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Not many pictures right now. Ray is just standing in one place and talking.</p>
</div>
</li>
<li id="prologue-166" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:12 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-166" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Only 10 years ago, people barely used search engines.  Now we can’t live without them.</p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">I’m always amazed how true genius can point out the obvious and make it sound profound.</p>
</div>
</li>
<li id="prologue-165" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:10 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-165" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Using the human genome project as an example of exponential growth in technology.</p>
</div>
</li>
<li id="prologue-164" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:09 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-164" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">And progress is getting faster…</p>
</div>
</li>
<li id="prologue-163" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:09 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-163" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Your phone in your pocket is a thousand times more powerful and million times cheaper than a computer from 40 years ago. “What fit in a building 40 years ago, fits in your pocket today”</p>
</div>
</li>
<li id="prologue-162" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:08 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-162" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Ray thinks genes are software written in COBOL.<span> </span><img class="wp-smiley" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; vertical-align: top; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; margin-right: 8px; border-width: initial; border-color: initial; " src="http://live.dataxstream.com/wp-includes/images/smilies/icon_smile.gif" alt=":-)" /></p>
</div>
</li>
<li id="prologue-161" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:08 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-161" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Oh Ray! Retalling the story of how Viagra was developed and discovered. Got a few chuckles from the crowd.</p>
</div>
</li>
<li id="prologue-159" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:06 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-159" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Ladies &amp; Gentlemen, Ray Kurzweil</p>
</div>
</li>
<li id="prologue-158" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:06 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-158" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Vishal is done. Last parting shot: “Timeless Software”</p>
</div>
</li>
<li id="prologue-156" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:05 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-156" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-155" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2414" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2414-1024x768.jpg" alt="IMG_2414" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Vishal’s only slide.  All the rest were just pretty pictures.  Notice the public clouds in the lower right.  SAP is looking to be able to be run on public clouds in the future.  Currently there are development and test systems on public clouds.  Getting production systems on public clouds is coming.</p>
</div>
</li>
<li id="prologue-154" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:03 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-154" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-152" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2411" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2411-1024x768.jpg" alt="IMG_2411" width="691" height="518" /></p>
</div>
</li>
<li id="prologue-153" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:03 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-153" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">“Change is the fundamental dimension in which we all live”</p>
</div>
</li>
<li id="prologue-151" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:02 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-151" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Cestbon “listens” for business content on your computer and links to it. You can hop straight from Cestbon to the data in SAP.</p>
</div>
</li>
<li id="prologue-150" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:01 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-150" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The presenter is British and doesn’t like the frenchies. Demoing Cestbon–An Outlook integration example.</p>
</div>
</li>
<li id="prologue-149" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:59 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-149" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Example #4: Ambient, Real-Time Systems</p>
</div>
</li>
<li id="prologue-148" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:59 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-148" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Six blade servers = 1 Nehalem processor.</p>
</div>
</li>
</ul>
<ul id="postlist2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<li id="prologue-147" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:58 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-147" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Vishal is talking about optimization across all layers. This relates to hardware manufacturers (memory, processors, blade servers). Modularity is making optimization happen.</p>
</div>
</li>
<li id="prologue-146" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:57 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-146" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">All the demos were very cool. As a geek, I would love to check out the technology involved in each one.</p>
</div>
</li>
<li id="prologue-145" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:57 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-145" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Excel integration now being demoed. The 166 million records can’t be loaded to Excel (for memory reasons). The solution allows the end-user to drill down and get the data from SAP as needed.</p>
</div>
</li>
<li id="prologue-143" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:55 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-143" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Business Objects Explorer being demoed. Crunching through 166 million records. The example is trying to be green by reducing paper and electricity.</p>
</div>
</li>
<li id="prologue-142" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:55 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-142" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-141" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2401" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2401-1024x768.jpg" alt="IMG_2401" width="691" height="518" /></p>
</div>
</li>
<li id="prologue-140" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:53 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-140" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">A Dilbert Example! Wow, the pop-culture touchpoints never end!</p>
</div>
</li>
<li id="prologue-139" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:52 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-139" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Example #3: Coherent Visualization of Massive Information. Looking at Coherent Modularization.</p>
</div>
</li>
<li id="prologue-138" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:50 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-138" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Containers need not only modularity, but also locality of design.</p>
</div>
</li>
<li id="prologue-136" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:49 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-136" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Now talking about SOA and its growth. Using it as a basis of modularity and coherence.</p>
</div>
</li>
<li id="prologue-134" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:49 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-134" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-133" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2394" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2394-1024x768.jpg" alt="IMG_2394" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Too many tools on the stage… (ahem)</p>
</div>
</li>
<li id="prologue-132" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:47 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-132" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-131" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2392" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2392-1024x768.jpg" alt="IMG_2392" width="691" height="518" /></p>
</div>
</li>
<li id="prologue-130" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:46 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-130" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Live tracking of tools being checked in and out of the tool crib.</p>
</div>
</li>
<li id="prologue-129" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:45 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-129" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Aircraft mechanics were using SAP, but equipment check-in check-out took too long via SAP GUI.</p>
</div>
</li>
<li id="prologue-128" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:43 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-128" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Example #2: Extending Information into Physical Systems. SAP runs on aircraft carriers. I hope they bring one in…</p>
</div>
</li>
<li id="prologue-125" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:42 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-125" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-124" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2389" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2389-1024x768.jpg" alt="IMG_2389" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Google Wave and SAP!  So happy together.</p>
</div>
</li>
<li id="prologue-126" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:42 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-126" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Cutting edge technology BCE edition: Rosetta stone. Using the analogy to show that we need to be able to work with others</p>
</div>
</li>
<li id="prologue-123" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:38 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-123" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">They’re pulling out all the stops!!! Google Wave! Google Wave isn’t complying with the demo. “Thank god that’s Google software and not SAP!” Big crowd laughs.</p>
</div>
</li>
<li id="prologue-122" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:37 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-122" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The example is now showing our good-ole familiar SAP GUI showing the timesheet approval process for the contractor timesheet application</p>
</div>
</li>
<li id="prologue-121" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:36 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-121" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Containers need to be extended. Either to SAP applications or to other Web 2.0 applications.</p>
</div>
</li>
<li id="prologue-119" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:35 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-119" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Another ooh-ahh moment! iPhone timesheet app.</p>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul id="postlist3" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<li id="prologue-117" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:34 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-117" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-115" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2385" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2385-1024x768.jpg" alt="IMG_2385" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Content separated from applicatons</p>
</div>
</li>
<li id="prologue-116" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:34 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-116" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Oh Snap!!! Cloud computing!! The example is running through a container. The backend is on Amazon S3</p>
</div>
</li>
<li id="prologue-114" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:32 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-114" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Example uses managers, contractors, and purchasing department.</p>
</div>
</li>
<li id="prologue-113" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:32 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-113" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Examples of design thinking, and separation of intent and optimization.</p>
</div>
</li>
<li id="prologue-112" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:31 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-112" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">An example of intent being separated from optimization: A painter does not need a scaffolding to paint a building, the scaffolding optimizes the process.</p>
</div>
</li>
<li id="prologue-110" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:29 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-110" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-108" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2382" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2382-1024x768.jpg" alt="IMG_2382" width="691" height="518" /></p>
</div>
</li>
<li id="prologue-109" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:29 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-109" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Next, the intent needs to be separated from the optimization.</p>
</div>
</li>
<li id="prologue-107" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:28 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-107" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Techies need to start with “design thinking”. Start with end-user in mind. “Start from the screen and work backwords”</p>
</div>
</li>
<li id="prologue-106" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:27 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-106" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-104" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2381" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2381-1024x768.jpg" alt="IMG_2381" width="691" height="518" /></p>
</div>
</li>
<li id="prologue-105" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:25 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-105" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Content is independent of containers in long-lived systems</p>
</div>
</li>
<li id="prologue-103" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:24 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-103" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Looking back at the IT industry, a new, major language emerges about every ten years. While Java will be around for a long time, we’re due for a new major language. SAP thinks that Ruby is the future. Ruby reached 1 million developers faster than any other programming language in history.</p>
</div>
</li>
<li id="prologue-102" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:22 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-102" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Vishal is teasing Ray Kurzweil’s speach on how the rate of change is increasing. Moore’s law gets a shout out.</p>
</div>
</li>
<li id="prologue-101" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:22 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-101" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">There are hundreds of SAP customers that have been using the software for over 30 years. None have left SAP. Vishal is highlighting the change that the companies underwent and how SAP changed with their customers.</p>
</div>
</li>
<li id="prologue-100" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:20 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-100" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">SAP has been around for 37 years. Have worked with over 85,000 customers, tens of thousands of partners, and tens of millions of users.</p>
</div>
</li>
<li id="prologue-98" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:19 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-98" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Vishal isn’t going to be focusing on the technology. He’ll be focusing on… “change”. Do you sense a theme?</p>
</div>
</li>
<li id="prologue-97" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:18 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-97" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Dr. Vishal Sikka, CTO SAP is now on the stage. He is the first of two keynote speakers.</p>
</div>
</li>
<li id="prologue-96" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:18 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-96" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-95" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2378" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2378-1024x768.jpg" alt="IMG_2378" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">“Welcome to TechEd 2009. You are the star of the show”</p>
</div>
</li>
<li id="prologue-94" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:16 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-94" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Zia is really pumping up “the community”. The SAP user community is almost 2 million strong now.</p>
</div>
</li>
<li id="prologue-92" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:16 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-92" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">“After the PowerPoints, it’s time for action” SAP wants the BPEs to make it happen! I already feel pumped. Let’s go out there an do this!!!! Oh wait, the Keynote hasn’t even started yet.</p>
</div>
</li>
<li id="prologue-91" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:14 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-91" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-89" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2376" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2376-1024x768.jpg" alt="IMG_2376" width="691" height="518" /></p>
<ul id="postlist4" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<li id="prologue-90" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<div id="content-90" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">To enter a new market, business process have to change. SAP’s emphasis on Business Process Expert community will pay dividends.</p>
</div>
</li>
<li id="prologue-88" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:12 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-88" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Zia is giving an example using Dunder Mifflin as a “well-run company”. Perhaps he hasn’t seen The Office…</p>
</div>
</li>
<li id="prologue-86" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:11 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-86" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Zia is telling the conference attendees that we are the agents of change–A very person-centric focus.</p>
</div>
</li>
<li id="prologue-84" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:11 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-84" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-82" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2374" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2374-1024x768.jpg" alt="IMG_2374" width="691" height="518" /></p>
</div>
</li>
<li id="prologue-83" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:10 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-83" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The world is changing. SAP is changing.</p>
</div>
</li>
<li id="prologue-81" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:09 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-81" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Change is constant. Michael Jackson gets a shout-out!</p>
</div>
</li>
<li id="prologue-80" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:09 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-80" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">On the stage now: Zia Yusuf, Executive Vice President, Global Ecosystem &amp; Partner Group, SAP</p>
</div>
</li>
<li id="prologue-79" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:08 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-79" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Inspirational Video: “Clarity is a necessity”.</p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">and</p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">SAP: “It’s time for a clear new world”</p>
</div>
</li>
<li id="prologue-77" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:06 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-77" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">And away we go. Lights down. Check. Ominous Music. Check. Inspiring Opening Video. Check. Can you feel the excitement?</p>
</div>
</li>
<li id="prologue-75" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:05 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-75" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-74" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2372" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_23721-1024x768.jpg" alt="IMG_2372" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The crowd is filling in nicely.  Sorry guy-behind-me for accidentally flashing the camera in your face TWICE before I snapped one without the flash.</p>
</div>
</li>
<li id="prologue-71" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:03 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-71" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="pie-img" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; vertical-align: top; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; margin-right: 8px; " src="http://lh3.ggpht.com/_mURzoG9oT2w/StSWfnIYziI/AAAAAAAAAH4/Ys8G6A5WHDc/IMG_0051.JPG?imgmax=640" alt="IMG_0051.JPG" width="480" height="640" /><img style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; vertical-align: top; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; margin-right: 5px; margin-top: 5px; margin-bottom: 5px; margin-left: 5px; " alt="" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Uploaded from backup backup plan.  This is from my iPhone.  Doug, Adam, Tim say “hi”</p>
</div>
</li>
<li id="prologue-69" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">7:00 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-69" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Cell phones off, y’all!</p>
</div>
</li>
<li id="prologue-68" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:59 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-68" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-large wp-image-67" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2369" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2369-1024x768.jpg" alt="IMG_2369" width="691" height="518" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Pictures will be slow, but here is a teaser</p>
</div>
</li>
<li id="prologue-66" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:57 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-66" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Five minutes to go. With me are Tim Cooper, Doug Foss, and our good friend Adam Blum from Grom &amp; Associates</p>
</div>
</li>
<li id="prologue-65" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:55 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-65" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; "><img class="alignnone size-medium wp-image-64" style="border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-style: initial; border-color: initial; padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 0px; margin-right: 8px; margin-bottom: 10px; margin-left: 0px; display: inline; vertical-align: top; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #eeeeee; " title="IMG_2367" src="http://live.dataxstream.com/wp-content/uploads/2009/10/IMG_2367-300x225.jpg" alt="IMG_2367" width="300" height="225" /></p>
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Here we go!</p>
</div>
</li>
<li id="prologue-63" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:49 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-63" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">We had an awesome setup to capture pictures from the event, but it relied on the conference WiFi. We’re working on a backup solution now.</p>
</div>
</li>
<li id="prologue-62" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:48 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-62" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">The conference public WiFi isn’t working. I have to be working on backup off of my Verizon Aircard, so posts may be a little slower.</p>
</div>
</li>
<li id="prologue-61" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:47 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-61" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">First take from the keynote address. The welcoming music is horrible, but we’ll survive</p>
</div>
</li>
<li id="prologue-60" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">6:45 am<span> </span><em>on</em><span> </span>October 13, 2009</span><br />
</span></h4>
<div id="content-60" class="postcontent" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 12px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; overflow-x: auto; overflow-y: auto; color: #555555; min-height: 32px; ">
<p style="margin-top: 0.7em; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; ">Welcome to the DataXstream Liveblog of the SAP TechEd 09 Conference Keynote address</p>
</div>
</li>
</ul>
</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/10/sap-teched-09-keynote-address-liveblog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Liveblogging SAP TechEd 09</title>
		<link>http://www.dataxstream.com/2009/10/liveblogging-sap-teched-09/</link>
		<comments>http://www.dataxstream.com/2009/10/liveblogging-sap-teched-09/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 17:29:58 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP ABAP Blog]]></category>
		<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP EDI Blog]]></category>
		<category><![CDATA[SAP Functional]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Java Blog]]></category>
		<category><![CDATA[SAP PI Blog]]></category>
		<category><![CDATA[SAP Project Management]]></category>
		<category><![CDATA[SAP SolMan Blog]]></category>
		<category><![CDATA[SAP Strategy]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[SAP Testing]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[Liveblog]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[TechEd]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=2664</guid>
		<description><![CDATA[Are you stuck in your cube while Bob from BASIS is heading to SAP TechEd 09 in sunny Phoenix?  Are you afraid that you&#8217;ll miss out on all the sun and fun?  While we can&#8217;t send the sun, we&#8217;ll try to bring you the fun.  DataXstream will be liveblogging at SAP TechEd 09. Head over [...]]]></description>
			<content:encoded><![CDATA[<p>Are you stuck in your cube while Bob from BASIS is heading to SAP TechEd 09 in sunny Phoenix?  Are you afraid that you&#8217;ll miss out on all the sun and fun?  While we can&#8217;t send the sun, we&#8217;ll try to bring you the fun.  DataXstream will be liveblogging at SAP TechEd 09.</p>
<p>Head over to <a href="http://live.dataxstream.com">live.dataxstream.com</a> on Tuesday, October 13, 2009 to get up to second updates from the show.  We will be getting our liveblog on starting at 8am PDT (that&#8217;s 11am for you right-coasters) for the general keynote session.  We&#8217;ll also be liveblogging from SAP TechEd 09 Demo Jam at 8pm PDT on Tuesday.  The Demo Jam promises to be a great time, so plan to join us online after you put the kiddies to bed!</p>
<p>This is our first foray into liveblogging.  Hopefully it will go off without too many technical glitches.  We hope you&#8217;ll enjoy following the events with us!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/10/liveblogging-sap-teched-09/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

