<?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 Integration Experts - DataXstream &#187; Craig Stasila</title>
	<atom:link href="http://www.dataxstream.com/tag/craig-stasila/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dataxstream.com</link>
	<description>SAP Certified Consultants</description>
	<lastBuildDate>Sat, 24 Jul 2010 11:29:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<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[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></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>
<div id="_mcePaste"><span id="more-5499"></span></div>
<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 <a href="mailto:cstasila@dataxstream.com">cstasila@dataxstream.com</a> 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>1</slash:comments>
		</item>
		<item>
		<title>Too Many Developers Spoil The Code</title>
		<link>http://www.dataxstream.com/2010/03/too-many-developers-spoil-the-code/</link>
		<comments>http://www.dataxstream.com/2010/03/too-many-developers-spoil-the-code/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 13:24:42 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP ABAP Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[ABAP development]]></category>
		<category><![CDATA[BADI]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[SAP ABAP]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=4689</guid>
		<description><![CDATA[You may have heard the following idiom before: Too many cooks spoil the broth The common meaning extracted from this saying is that too many people working on a single task tend to make a mess of it.  But, what happens when you have too many developers working in a single piece of ABAP code? [...]]]></description>
			<content:encoded><![CDATA[<p>You may have heard the following idiom before:</p>
<blockquote><p>Too many cooks spoil the broth</p></blockquote>
<p>The common meaning extracted from this saying is that too many people working on a single task tend to make a mess of it.  But, what happens when you have too many developers working in a single piece of ABAP code?  That&#8217;s right, you get a big mess.  This issue is especially difficult to deal with when there are multiple functional requirements leveraging the same custom code object, form-based user-exit, or function-based user-exit.</p>
<p>While current releases of SAP (those built on SAP NetWeaver 2004s and later) have good built-in handling of enhancements and customizations via implicit and explicit enhancement points and BADIs, there still exists many old-school user-exits.</p>
<h2>Multiple Developers; One Code Object</h2>
<p>I recently worked on a project where three separate developers were creating three separate interfaces based on the outbound delivery IDOC.  While the development for all three interfaces was occurring at the same time, the go-live date for each of the interfaces were different (we&#8217;ll discuss that project management glitch at another time).  Each interface required a separate set of custom fields and, therefore, it&#8217;s own IDOC extension.  The problem is there is only one appropriate user-exit in IDOC_OUTPUT_DELVRY and three developers needed to be developing in it at the same time!</p>
<p>How did we solve this problem?
<span id="more-4689"></span></p>
<h2>An Object To Call One&#8217;s Own</h2>
<p>To allow each developer his own development object and transport timeline, I decided to implement a custom multiple-use, filtered BADI <em>inside</em> the SAP user-exit function EXIT_SAPLV56K_002.  Actually, you can implement your own BADI almost anywhere you need alternate logic execution&#8211;even custom code!</p>
<p>So you might be saying, &#8220;Create my own multi-use, filtered BADI definition? Sounds complicated.&#8221; Well, it&#8217;s easier than you think!</p>
<p>NOTE: This solution was done on an ECC6 system based on SAP NetWeaver 2004s.  The steps to implement this type of solution in ECC5 (SAP NetWeaver 2004) are very similar.</p>
<h2>Create A Custom BADI Definition</h2>
<ol>
<li>To create a new enhancement spot definition, use transaction SE18.  I named my enhancement spot Z_EXIT_SAPLV56K_002 because the enhancement spot will be used in user-exit function EXIT_SAPLV56K_002.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-01.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4694" title="BADI 01" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-01.jpg" alt="" width="399" height="179" /></a></li>
<li>In the ensuing dialog box, enter a description and choose <em>BAdi</em> <em>Definition</em> for the Technology
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-02.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4695" title="BADI 02" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-02.jpg" alt="" width="646" height="149" /></a></li>
<li>Next, create a new BADI definition.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-03.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4696" title="BADI 03" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-03.jpg" alt="" width="614" height="191" /></a></li>
<li>Specify that the new BADI definition will be multiple use and limited to filtered use.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-04.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4697" title="BADI 04" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-04.jpg" alt="" width="538" height="95" />
</a>Making the BADI definition multiple use means that each developer can create his or her own BADI implementation.  Each BADI is implemented in its own class.  This promotes code separation and the proper reuse of shared development objects.
Making the BADI definition limited to filter use ensures that the BADI implementations are separate and cannot affect every interface using the user-exit.</li>
<li>Now, create a new filter.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-05.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4698" title="BADI 05" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-05.jpg" alt="" width="262" height="102" /></a>
BADI filtering in SAP NetWeaver 2004s is much more powerful than in previous versions of SAP.  Read more about BADI filtering <a href="http://help.sap.com/saphelp_nw04/helpdata/en/eb/3e7cf7940e11d295df0000e82de14a/frameset.htm" target="_blank">here</a>.</li>
<li><a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-05.jpg" rel="shadowbox[post-4689];player=img;"></a> The BADI we are defining will be used to populate IDOC extensions.  Each IDOC extension has its own message type (e.g. ZMHL_DESADV, ZQTC_DESADV, ZMHL_SHPORD), therefore the message type of the IDOC being processed is a good value to filter on.  I named my BADI filter EDI_MESTYP.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-06.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4710" title="BADI 06" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-06.jpg" alt="" width="588" height="288" /></a>
SAP allows for the automatic checking of BADI implementation filter values.  The standard domain EDI_MESTYP has a value range of table EDMSG attached to it.  This is exactly the range of values I want as allowable values, so I configure the BADI filter to automatically check the filter values against dictionary object EDI_MESTYP.</li>
<li>Next, create the BADI interface that will be inherited by each implementing class
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-07.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4700" title="BADI 07" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-07.jpg" alt="" width="572" height="149" /></a></li>
<li>The original user-exti function EXIT_SAPLV56K_002 is executed after each segment is added.  Our BADI will do the same.  Create a new public interface method SEGMENT_ADDED.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-08.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4701" title="BADI 08" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-08.jpg" alt="" width="560" height="118" /></a></li>
<li>The BADI we are creating is replicating user-exit function EXIT_SAPLV56K_002.  Here is the function interface for EXIT_SAPLV56K_002:
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-09_1.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4711" title="BADI 09_1" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-09_1.jpg" alt="" width="602" height="383" /></a>
Here is the same data being passed via the interface method.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-09.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4702" title="BADI 09" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-09.jpg" alt="" width="582" height="218" /></a></li>
<li>Lastly, the BADI has to be called from the existing user-exit.  I will not cover the steps required for implementing user-exit function EXIT_SAPLV56K_002 here, but once you have the user-exit implemented, add the following code.  This code should be the only logic directly inside the user-exit.  Any data processing logic should be implemented via a BADI implementation:
<pre style="background-color: #eaeaea; color: #222;">DATA: GO_BADI TYPE REF TO Z_EXIT_SAPLV56K_002.
DATA: L_STR TYPE STRING.
L_STR = MESSAGE_TYPE.

* Get BADI class based on IDOC message type
GET BADI GO_BADI
   FILTERS EDI_MESTYP = L_STR.

* Execute SEGMENT_ADDED BADI method
CALL BADI GO_BADI-&gt;SEGMENT_ADDED
   EXPORTING
     MESSAGE_TYPE       = MESSAGE_TYPE
     SEGMENT_NAME       = SEGMENT_NAME
     DATA               = DATA
     TAB_IDOC_REDUCTION = TAB_IDOC_REDUCTION
     FLT_VAL            = MESSAGE_TYPE
   CHANGING
     CONTROL_RECORD_OUT = CONTROL_RECORD_OUT
     IDOC_DATA          = IDOC_DATA[].</pre>
</li>
</ol>
<p>We&#8217;re done with creating the BADI definition!  Save and activate your work.  I bet you&#8217;re saying to yourself, &#8220;Wow, that was easy!&#8221;</p>
<h2>BADI Implementation</h2>
<p>Implementing the BADI you just created in the steps above is just like implementing any other BADI in SAP, so here are the Cliff Notes version of implementation instructions.</p>
<ol>
<li>Using transaction SE19, create a new enhancement spot implementation for Z_EXIT_SAPLV56K_002.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-10.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4703" title="BADI 10" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-10.jpg" alt="" width="547" height="180" /></a></li>
<li>Enter the BADI implementation details.  This particular BADI implementation is for RICEF ID MHL-IO-007, so I added that identification to the BADI implementation name and implementing class name.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-12.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4705" title="BADI 12" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-12.jpg" alt="" width="572" height="280" /></a></li>
<li>In the BADI definition, we required each BADI implementation to be filtered on message type. This particular BADI implementation is for message type ZMHL_SHPORD.  Create the filter combination for the BADI implementation.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-13.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4706" title="BADI 13" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-13.jpg" alt="" width="586" height="149" /></a></li>
<li>This ensures that the other interfaces using this BADI (ZMHL_DESADV, ZQTC_DESADV) will not execute the code implemented with this BADI.
<a href="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-14.jpg" rel="shadowbox[post-4689];player=img;"><img class="alignnone size-full wp-image-4707" title="BADI 14" src="http://www.dataxstream.com/wp-content/uploads/2010/03/BADI-14.jpg" alt="" width="518" height="255" /></a></li>
<li>The final steps are to add the code to the SEGMENT_ADDED method just like you would in user-exit function EXIT_SAPLV56K_002.  Once you are done, save and activate your changes!</li>
</ol>
<h2>Summary</h2>
<p>As you can see, with a few extra steps, it is possible to have your cake and eat it, too, by create a custom BADI definition that can be used by other developers.  All this talk of food is making me hungry.  Is it lunchtime yet?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2010/03/too-many-developers-spoil-the-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BD53 Doesn’t Play Well With Others</title>
		<link>http://www.dataxstream.com/2010/02/bd53-doesn%e2%80%99t-play-well-with-others/</link>
		<comments>http://www.dataxstream.com/2010/02/bd53-doesn%e2%80%99t-play-well-with-others/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 16:03:32 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[ALE]]></category>
		<category><![CDATA[Change Pointer]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=4397</guid>
		<description><![CDATA[I recently posted a blog about how to implement field-level IDOC reduction for the HRMD_A message type.  In short, the standard SAP transaction to reduce IDOC segments and fields (transaction BD53) can&#8217;t be used because the field-level reduction is ignored by SAP.  My solution leveraged TVARV as a repository for the fields to clear.  Read the whole [...]]]></description>
			<content:encoded><![CDATA[<p>I recently posted a blog about how to implement field-level IDOC reduction for the HRMD_A message type.  In short, the standard SAP transaction to reduce IDOC segments and fields (transaction BD53) can&#8217;t be used because the field-level reduction is ignored by SAP.  My solution leveraged TVARV as a repository for the fields to clear.  Read the whole solution <a href="http://www.dataxstream.com/2010/02/how-to-implement-field-level-hrmd_a-reduction/" target="_blank">here</a>. A <a href="http://www.dataxstream.com/author/tyates/" target="_blank">colleague</a> of mine was very quick to point out that instead of using TVARV as the method for controlling which fields are cleared, I should have continued to leverage transaction BD53 for the IDOC reduction maintenance and changed my code to look up field level reductions in table TBD24.</p>
<p>What a great idea!  Too bad I hate this suggestion&#8230; and it&#8217;s all SAP&#8217;s fault!!</p>
<p><span id="more-4397"></span>You see, SAP transaction BD53 just does not play well with others.  My full HRMD_A solution used a custom filter object (transactions BD95 and BD59) and a custom outbound IDOC formatting function module to convert change pointers into IDOCs (transaction BD60).  The dirty little secret of transaction BD53 is that every time you save and update the IDOC reduction in transaction BD53, SAP goes and screws up a bunch of configuration  displaying a message that says <em>&#8220;Interface changed for message type &lt;your_message_type&gt;:  Settings reset&#8221;</em></p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2010/02/00-Settings-Reset.jpg" rel="shadowbox[post-4397];player=img;"><img class="alignnone size-full wp-image-4398" title="00 Settings Reset" src="http://www.dataxstream.com/wp-content/uploads/2010/02/00-Settings-Reset.jpg" alt="" width="436" height="152" /></a></p>
<p><strong>Wait! What!?!</strong></p>
<p>What does that message even mean?  Well, that message is telling you in very cryptic language that SAP has gone and reset the settings in BD59 and BD60 to the SAP standard! So, every time the field reductions were updated, kiss your custom filter assignments and custom IDOC processing function goodbye!</p>
<p>Why couldn&#8217;t the message say:</p>
<blockquote><p>Hey Buddy! You know all that custom configuration you did to get your interface working just so? Well, its gone and you&#8217;re going to have to redo it all in the following transactions:
BD59
BD60
etc.</p></blockquote>
<p>I guess SAP is just far too polite.</p>
<p>So, be very cautious when you pair IDOC reduction with custom filter assignments and custom IDOC formatting function modules and be aware that <strong>every time</strong> the IDOC reduction is updated, you will need to go back in to reconfigure transactions BD59 and BD60.</p>
<p>For more information, see SAP <a href="https://service.sap.com/sap/bc/bsp/spn/sapnotes/index2.htm?numm=655321" target="_blank">OSS Note 655321</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2010/02/bd53-doesn%e2%80%99t-play-well-with-others/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Implement Field-Level HRMD_A Reduction</title>
		<link>http://www.dataxstream.com/2010/02/how-to-implement-field-level-hrmd_a-reduction/</link>
		<comments>http://www.dataxstream.com/2010/02/how-to-implement-field-level-hrmd_a-reduction/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 13:08:42 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP ABAP Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[ALE]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[HRMD_A]]></category>
		<category><![CDATA[IDOC]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[SAP programming]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=4289</guid>
		<description><![CDATA[I love ALE.  It is super-powerful and, once you get the hang of it, is a snap to configure.  Recently, I was setting up an HRMD_A interface for my client.  Everything was going smoothly until I ran into a requirement to filter out the social security number (PERID), birthdate (GBDAT), and gender (GESCH) for privacy [...]]]></description>
			<content:encoded><![CDATA[<p>I love ALE.  It is super-powerful and, once you get the hang of it, is a snap to configure.  Recently, I was setting up an HRMD_A interface for my client.  Everything was going smoothly until I ran into a requirement to filter out the social security number (PERID), birthdate (GBDAT), and gender (GESCH) for privacy reasons.  All of these fields are in segment E1P0002.  Initially, I thought that this requirement was easy enough to accomplish.  I just created a IDOC reduction in transaction BD53 and filtered out the three fields.  I soon found out that while entire segments were getting reduced from the IDOC as configured, the individually reduced fields were still showing up in the IDOC.  What&#8217;s going on?!?
<span id="more-4289"></span> Well, after some digging, I found <a href="https://service.sap.com/sap/bc/bsp/spn/sapnotes/index2.htm?numm=381766" target="_blank">OSS Note 381766</a>.  This note&#8217;s cause section states:</p>
<blockquote><p>The reduction at segment level (see also Note 301223) was facilitated in order to be able to copy message type HRMD_A. This involved setting the reduction at field level, which was not taken into account in the code because it is not possible to centrally determine which fields are mandatory and which are dependent for all country versions. In addition, for one info type there may several records for different periods of time, which may also cause a problem when you are reducing fields.</p></blockquote>
<p>So, in essence, field-level reduction isn&#8217;t supported for HRMD_A.  The solution supplied in the OSS note suggests creating user-exit code to filter out the unwanted fields.  I already have implemented BADI HRALE00OUTBOUND_IDOC to add some other processing logic (if you&#8217;re lucky I&#8217;ll cover that logic in this blog, too), so I have a module in which I can place the code. And while the code to loop through an IDOC and clear out all instances of E1P0002-PERID, E1P0002-GBDAT, and E1P0002-GESCH is very easy, I can&#8217;t help but think I can make the code more useful.  You see, I hate unitasking code.  I can see it now.  If I take the shortcut path and wrote the unitasking code to clear those 3 fields, the code won&#8217;t be in production for more than a month before the requirements change and now there is another field that needs to be filtered out as well.  With unitasking code, I would have to crack open the code, create a transport, unit test, transport to Q, integration test, wait for a transport window, blah, blah, blah.  Ugh!  What a waste of time for a minor change.  We can do better.</p>
<p>I decided to create a multi-tasking module that will work for HRMD_A message types.  The fields to be cleared will be stored in TVARV in the format &lt;SEGMENT&gt;-&lt;FIELD&gt; (e.g. E1P0002-PERID).  That way, whenever the HR functional team wanted to filter out a new field, all they had to do was to update a TVARV variable.</p>
<p>To implement the solution, I created a new method called CLEAR_IDOC_FIELDS in my class implementation for BADI HRALE00OUTBOUND_IDOC.  CLEAR_IDOC_FIELDS has the same method signature as IF_EX_HRALE00OUTBOUND_IDOC~IDOC_DATA_FOR_RECEIVER_MODIFY:</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2010/02/00-Method-Signature.jpg" rel="shadowbox[post-4289];player=img;"><img class="alignnone size-full wp-image-4293" title="00 Method Signature" src="http://www.dataxstream.com/wp-content/uploads/2010/02/00-Method-Signature.jpg" alt="" width="605" height="163" /></a></p>
<p>The code is pretty straight forward.  To allow multiple interfaces to coexist in method CLEAR_IDOC_FIELDS, the TVARV variable that stores the fields to clear is in the format &#8216;ZHR_CLR_&#8217; concatenated with the IDOC message type.</p>
<pre style="background-color: #eaeaea; color: #222;">METHOD CLEAR_IDOC_FIELDS .
*----------------------------------------------------------------------*
* Class:     ZCL_IM_HRALE00OUTBOUNDIDOC                                *
* Method:    CLEAR_IDOC_FIELDS                                         *
* Author:    Craig Stasila                                             *
*----------------------------------------------------------------------*

  TYPES: BEGIN OF TY_FILTER,
           TABNAME   TYPE DFIES-TABNAME,
           FIELDNAME TYPE DFIES-FIELDNAME,
           POSITION  TYPE DFIES-POSITION,
           OFFSET    TYPE DFIES-OFFSET,
           LENG      TYPE DFIES-LENG,
        END OF TY_FILTER.

  DATA: WA_FILTER      TYPE TY_FILTER,
        LT_FILTER      TYPE TABLE OF TY_FILTER,
        LS_TABNAME     TYPE DDOBJNAME,
        LS_SAV_TABNAME TYPE DDOBJNAME.

  DATA: LS_NAME   TYPE TVARV-NAME,
        LT_TVARVC TYPE TABLE OF TVARVC,
        WA_TVARVC TYPE TVARVC.

  DATA: LT_DFIES TYPE TABLE OF DFIES,
        WA_DFIES TYPE DFIES.

  DATA: LR_SEGNAM TYPE RANGE OF EDIDD-SEGNAM,
        WR_SEGNAM LIKE LINE OF LR_SEGNAM.

  FIELD-SYMBOLS: &lt;FS&gt; TYPE LINE OF EDIDD_TT.

* Fields to clear are in variable
  CONCATENATE 'ZHR_CLR_' MESTYP INTO LS_NAME.

* Get list of fields to clear from TVARV
  SELECT * FROM TVARVC
    INTO TABLE LT_TVARVC
   WHERE NAME = LS_NAME
     AND TYPE = 'S'.

  CHECK SY-SUBRC = 0.

* Build list of fields to clear
  LOOP AT LT_TVARVC INTO WA_TVARVC.
    CLEAR WA_FILTER.
    SPLIT WA_TVARVC-LOW AT '-' INTO WA_FILTER-TABNAME WA_FILTER-FIELDNAME.
    CHECK SY-SUBRC = 0.

    COLLECT WA_FILTER INTO LT_FILTER.
  ENDLOOP.

  SORT LT_FILTER BY TABNAME.
  CLASS CL_ABAP_CHAR_UTILITIES DEFINITION LOAD.

* Get field offsets
  LOOP AT LT_FILTER INTO WA_FILTER.
    LS_TABNAME = WA_FILTER-TABNAME.

    IF LS_TABNAME NE LS_SAV_TABNAME.

      CALL FUNCTION 'DDIF_NAMETAB_GET'
        EXPORTING
          TABNAME   = LS_TABNAME
        TABLES
          DFIES_TAB = LT_DFIES
        EXCEPTIONS
          NOT_FOUND = 1
          OTHERS    = 2.

      IF SY-SUBRC &lt;&gt; 0.
        CONTINUE.
      ENDIF.

      SORT LT_DFIES BY TABNAME FIELDNAME.

    ENDIF.

    LS_SAV_TABNAME = LS_TABNAME.

    READ TABLE LT_DFIES INTO WA_DFIES
         WITH KEY TABNAME   = WA_FILTER-TABNAME
                  FIELDNAME = WA_FILTER-FIELDNAME
         BINARY SEARCH.

    CHECK SY-SUBRC = 0.

    WA_FILTER-POSITION = WA_DFIES-POSITION.
    WA_FILTER-OFFSET   = WA_DFIES-OFFSET / CL_ABAP_CHAR_UTILITIES=&gt;CHARSIZE.
    WA_FILTER-LENG     = WA_DFIES-LENG.

    MODIFY LT_FILTER FROM WA_FILTER.

* Build segment name range
    IF SY-SUBRC = 0.
      WR_SEGNAM-SIGN   = 'I'.
      WR_SEGNAM-OPTION = 'EQ'.
      WR_SEGNAM-LOW    = WA_FILTER-TABNAME.
      COLLECT WR_SEGNAM INTO LR_SEGNAM.
    ENDIF.
  ENDLOOP.

* Loop at IDOC to clear fields
  LOOP AT IDOC_DATA ASSIGNING &lt;FS&gt;.
    IF &lt;FS&gt;-SEGNAM IN LR_SEGNAM.
      LOOP AT LT_FILTER INTO WA_FILTER WHERE TABNAME = &lt;FS&gt;-SEGNAM.
        CLEAR &lt;FS&gt;-SDATA+WA_FILTER-OFFSET(WA_FILTER-LENG).
      ENDLOOP.
    ENDIF.
  ENDLOOP.
ENDMETHOD.</pre>
<p>I also added the following code to IF_EX_HRALE00OUTBOUND_IDOC~IDOC_DATA_FOR_RECEIVER_MODIFY:</p>
<pre style="background-color: #eaeaea; color: #222;">* Clear IDOC fields
CALL METHOD ME-&gt;CLEAR_IDOC_FIELDS
  EXPORTING
     IDOC_CONTROL = IDOC_CONTROL
     RECEIVER     = RECEIVER
     MESTYP       = IDOC_CONTROL-MESTYP
  CHANGING
     IDOC_DATA    = IDOC_DATA.</pre>
<p>Finally, I maintained the following TVARV variable:</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2010/02/01-TVARV-Variable.jpg" rel="shadowbox[post-4289];player=img;"><img class="alignnone size-full wp-image-4311" title="01 TVARV Variable" src="http://www.dataxstream.com/wp-content/uploads/2010/02/01-TVARV-Variable.jpg" alt="" width="611" height="362" /></a></p>
<p>That&#8217;s all it takes!  Now individual field values can be easily be filtered from outbound HRMD_A IDOCs!.</p>
<p><em>UPDATE: </em>My colleague informed me that instead of using TVARV, I should continue to use BD53 to manage the IDOC reduction and change my code to look up the field reductions in TBD24.  This would be a great idea, but my full HRMD_A solution uses custom filter objects and a custom IDOC formatting function module.  <a href="http://www.dataxstream.com/2010/02/bd53-doesn%E2%80%99t-play-well-with-others/" target="_self">And BD53 does not play well with these customizations.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2010/02/how-to-implement-field-level-hrmd_a-reduction/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Changed RFC Structure Not Propagating to XI/PI Runtime</title>
		<link>http://www.dataxstream.com/2009/11/changed-rfc-structure-not-propagating-to-xipi-runtime/</link>
		<comments>http://www.dataxstream.com/2009/11/changed-rfc-structure-not-propagating-to-xipi-runtime/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 15:04:14 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP PI Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[PI]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[XI]]></category>
		<category><![CDATA[XI/PI]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=3257</guid>
		<description><![CDATA[In support of an synchronous XI interface (SOAP-&#62;XI-&#62;RFC), I changed the underlying structure of one of the RFC parameters.  I appended some fields to the end of a return structure in ECC.  I re-imported the RFC meta data to the Integration Repository as always and mapped the fields accordingly.  When I executed the interface, the fields that [...]]]></description>
			<content:encoded><![CDATA[<p>In support of an synchronous XI interface (SOAP-&gt;XI-&gt;RFC), I changed the underlying structure of one of the RFC parameters.  I appended some fields to the end of a return structure in ECC.  I re-imported the RFC meta data to the Integration Repository as always and mapped the fields accordingly.  When I executed the interface, the fields that I added did NOT appear in the XML.  This is because the XI runtime cache did not have the updated metadata for the RFC.</p>
<p>To update the runtime cache (called CPA Cache), enter the following URL in your web browser <em>http://&lt;host&gt;:5&lt;sys#&gt;00/CPACache/refresh?mode=full</em>.  XI will do the rest of the work for you.  After the CPA cache is refreshed, the new RFC meta data reflects the newly added fields.</p>
<p>These other CPA Cache URLs may also be helpful:</p>
<blockquote><p><strong>CPA Cache Monitoring: </strong> http://&lt;host&gt;:5&lt;sys#&gt;00/CPACache<br/>
<strong>Delta CPA Cache Refresh: </strong> http://&lt;host&gt;:5&lt;sys#&gt;00/CPACache/refresh?mode=delta<br/>
<strong>Full CPA Cache Refresh: </strong> http://&lt;host&gt;:5&lt;sys#&gt;00/CPACache/refresh?mode=full</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/11/changed-rfc-structure-not-propagating-to-xipi-runtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Debug ABAP Web Service on SAP Web Application Server (WAS)</title>
		<link>http://www.dataxstream.com/2009/11/how-to-debug-abap-web-service/</link>
		<comments>http://www.dataxstream.com/2009/11/how-to-debug-abap-web-service/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 11:39:53 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP ABAP Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[ABAP debugger]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAP ABAP]]></category>
		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=3173</guid>
		<description><![CDATA[Debugging a web service on the ABAP stack of SAP Web Application Server is a very useful procedure to know.  Here's how you do it.]]></description>
			<content:encoded><![CDATA[<p>One of the more confounding aspects of developing in the SAP space is the lack of good, low-level, helpful instructions.  While this post is merely regurgitating information that is readily available elsewhere, it will be done in a manner that (hopefully) will actually be useful to vast majority of ABAP developers out there that,  like me, find a lot of SAP&#8217;s implementation of web services on the ABAP stack confusing.</p>
<p>Debugging a web service on the ABAP stack of SAP Web Application Server is a very useful procedure to know.  Here&#8217;s how you do it.</p>
<p><em><span id="more-3173"></span>Note: This example is for ECC 5.0</em></p>
<ol>
<li>Locate the web service definition in the HTTP Service Hierarchy.  There are two ways to do this:
<ul>
<li><strong>Option 1:</strong> Use transaction <strong>WSCONFIG</strong> and display the configuration for your web service.  Click on the ICF Details button
<a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-01.jpg" rel="shadowbox[post-3173];player=img;"><img class="size-full wp-image-3174 aligncenter" title="Debug ABAP Web Service 01" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-01.jpg" alt="Debug ABAP Web Service 01" width="492" height="221" /></p>
<p></a></li>
<li><strong>Option 2:</strong> Start transaction <strong>SICF</strong>. Navigate directly to <em>/sap/bc/srt/rfc/sap</em> for your default host.</li>
</ul>
</li>
<li>Regardless of the method used to get to the service definition for your web service enabled function module, you should have it selected as in this example.
<a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-02.jpg" rel="shadowbox[post-3173];player=img;"><img class="size-full wp-image-3175 aligncenter" title="Debug ABAP Web Service 02" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-02.jpg" alt="Debug ABAP Web Service 02" width="599" height="410" /></p>
<p></a></li>
<li>Next, enable the debugger by selecting the <em>Edit\Debugging\Activate Debugging</em> menu.
<p style="text-align: center;"><a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-03.jpg" rel="shadowbox[post-3173];player=img;"><img class="size-full wp-image-3176 aligncenter" title="Debug ABAP Web Service 03" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-03.jpg" alt="Debug ABAP Web Service 03" width="522" height="179" />
</a></p>
</li>
<li><a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-03.jpg" rel="shadowbox[post-3173];player=img;"></a>In the ensuing dialog box, confirm the debugging options (the defaults are usually OK).
<span style="background-color: #ffffff;"> <a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-04.jpg" rel="shadowbox[post-3173];player=img;"><img class="size-full wp-image-3177 aligncenter" title="Debug ABAP Web Service 04" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-04.jpg" alt="Debug ABAP Web Service 04" width="445" height="222" /></p>
<p></a></p>
<p></span></li>
<li>To exercise the debugger, test your web service.  For this example, I will use the SAP WAS web service test tool, but the application calling the web service can be anything as long as it connects with the debugger&#8217;s user ID.
<a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-05.jpg" rel="shadowbox[post-3173];player=img;"><img class="size-full wp-image-3178 aligncenter" title="Debug ABAP Web Service 05" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-05.jpg" alt="Debug ABAP Web Service 05" width="399" height="165" /></p>
<p></a></li>
<li><a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-05.jpg" rel="shadowbox[post-3173];player=img;"></a>When the web service is executed, the debugger will start in a new SAPGUI session (make sure you are already logged in via the SAPGUI prior to executing the web service).
<a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-06.jpg" rel="shadowbox[post-3173];player=img;"><img class="size-full wp-image-3185 aligncenter" title="Debug ABAP Web Service 06" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-06.jpg" alt="Debug ABAP Web Service 06" width="468" height="427" /></p>
<p></a></li>
<li>In the debugger, choose <em>Breakpoints\Breakpoint at\Function  Module</em> from the  menu to create a new breakpoint.
<a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-07.jpg" rel="shadowbox[post-3173];player=img;"><img class="size-full wp-image-3186 aligncenter" title="Debug ABAP Web Service 07" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-07.jpg" alt="Debug ABAP Web Service 07" width="500" height="178" /></p>
<p></a></li>
<li>Specify the function module that implements your web service.  In the debugger, press F8 to run to your newly created breakpoint.
<span style="background-color: #ffffff;"><a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-08.jpg" rel="shadowbox[post-3173];player=img;"><img class="size-full wp-image-3187 aligncenter" title="Debug ABAP Web Service 08" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Debug-ABAP-Web-Service-08.jpg" alt="Debug ABAP Web Service 08" width="405" height="71" /></a>
</span> If the debugger doesn&#8217;t get to your breakpoint, the most likely culprit is malformed input XML.  Check the payload of the message to ensure that it conforms to the specifications of the web service.</li>
</ol>
<p>Once the debugger has started, it is just like debugging any other SAP application.  If you have any specific tips or tricks regarding debugging web services, please share them in the comments section of this blog.</p>
<p><script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/11/how-to-debug-abap-web-service/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changing The Function Interface of Web Service Enabled Functions</title>
		<link>http://www.dataxstream.com/2009/11/changing-the-function-interface-of-web-service-enabled-functions/</link>
		<comments>http://www.dataxstream.com/2009/11/changing-the-function-interface-of-web-service-enabled-functions/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 18:11:44 +0000</pubDate>
		<dc:creator>Craig Stasila</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP ABAP Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Craig Stasila]]></category>
		<category><![CDATA[DataXstream]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAP ABAP]]></category>
		<category><![CDATA[SAP programming]]></category>
		<category><![CDATA[web service]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=3160</guid>
		<description><![CDATA[Today, I got an email from one of my co-workers at my client with a very good question.  This developer had created an ABAP function to return SAP data.  Then, he exposed this function as a web service. Due to changes in functional scope, he had to change the function interface.  After he made all [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I got an email from one of my co-workers at my client with a very good question.  This developer had created an ABAP function to return SAP data.  Then, he exposed this function as a web service. Due to changes in functional scope, he had to change the function interface.  After he made all his changes and unit tested the ABAP code, he was surprised to find that his web service was still adhering to the old function interface.  He tried deleting and recreating the web service, but ran in to problems.  He was stuck in a pickle and needed a little push in the right direction.</p>
<p><span id="more-3160"></span></p>
<p>My colleague, Steve Park, wrote a two part blog explaining how to turn any ABAP function into a web service.  (<a href="http://www.dataxstream.com/2009/09/turn-any-sap-remote-enabled-function-module-into-a-web-service-%E2%80%93-part-1/" target="_blank">Find Part 1 here</a>.  <a href="http://www.dataxstream.com/2009/10/turn-any-sap-remote-enabled-function-module-into-a-web-service-%E2%80%93-part-2/" target="_blank">Find Part 2 here</a>.)  But, what happens when you change the function module interface as my friend in the above example did?  SAP does not automatically update the web service interface (called the virtual interface).  You have to manually rectify this conflict.  There are two main options to do this.  Both are quite easy.  Which option you choose depends on how the external systems consuming the web service are handling changes.</p>
<p><em>Note: The examples listed below are for ECC 5.0.</em></p>
<h3>Option 1: Update Virtual Interface</h3>
<p>In cases where all systems consuming the web service will be using the new function/web service interface, when the underlying structure of complex data type changes, or when mandatory fields of a function interface are added or removed, it is best to change web service virtual interface.  The consuming application may have to re-import the WSDL to</p>
<p>In transaction SE80, navigate to the virtual interface for the function whose interface has changed.  Right click on the virtual interface and select &#8220;Change&#8221;.</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-01.jpg" rel="shadowbox[post-3160];player=img;"><img class="alignnone size-full wp-image-3161" title="Change Virtual Interface 01" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-01.jpg" alt="Change Virtual Interface 01" width="443" height="361" /></a></p>
<p>SAP will compare the virtual interface to the function interface.  If the interfaces are different, SAP will display the following prompt.</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-02.jpg" rel="shadowbox[post-3160];player=img;"><img class="alignnone size-full wp-image-3162" title="Change Virtual Interface 02" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-02.jpg" alt="Change Virtual Interface 02" width="338" height="142" /></a></p>
<p>Simply select &#8220;Yes&#8221; and SAP will update the virtual interface to match the function interface.  Once you have activated your changes, you can check the WSDL to ensure that the function interface changes have been successfully migrated to the web service virtual interface.</p>
<h3>Option 2: Create new virtual interface version</h3>
<p>In cases where optional fields are added to the existing function interface and/or when some of the web service consumers will NOT need to use the new function interface, it is possible to create a new virtual interface version.  This is possible only in cases where the <em>old</em> virtual interface can still execute the function module with the <em>new</em> interface without causing syntax errors.</p>
<p>In transaction SE80, navigate to the virtual interfaces for the function whose interface has changed.  Right click on the virtual interface node and select &#8220;Create&#8221;.</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-03.jpg" rel="shadowbox[post-3160];player=img;"><img class="alignnone size-full wp-image-3163" title="Change Virtual Interface 03" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-03.jpg" alt="Change Virtual Interface 03" width="486" height="181" /></a></p>
<p>In the ensuing dialog, create a new virtual interface version with the endpoint mapped to the  function module.</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-04.jpg" rel="shadowbox[post-3160];player=img;"><img class="alignnone size-full wp-image-3164" title="Change Virtual Interface 04" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-04.jpg" alt="Change Virtual Interface 04" width="590" height="257" /></a></p>
<p>Now that the virtual interface is created, create a new version of the web service.</p>
<p><a href="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-05.jpg" rel="shadowbox[post-3160];player=img;"><img class="alignnone size-full wp-image-3166" title="Change Virtual Interface 05" src="http://www.dataxstream.com/wp-content/uploads/2009/11/Change-Virtual-Interface-05.jpg" alt="Change Virtual Interface 05" width="597" height="152" /></a></p>
<h3>Conclusion</h3>
<p>Changing the web service virtual interface to match changes in the underlying function module interface is easy. Whether you choose to create a new virtual interface version, or if you choose to update the virtual interface to match the new functional interface, the process is quick and easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/11/changing-the-function-interface-of-web-service-enabled-functions/feed/</wfw:commentRss>
		<slash:comments>2</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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:
+ Sensor Monitoring for Smart Energy Saving
+ Project Yowie
+ 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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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
$1,000 of computation = 1,000 times the human brain
Reverse engineering of the brain complete
Computers pass the Turing test!!
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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
</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>
