<?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; SAP Basis Blog</title>
	<atom:link href="http://www.dataxstream.com/category/sap-consultants-blog/sap-technical/sap-basis-blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dataxstream.com</link>
	<description>SAP Certified Consultants</description>
	<lastBuildDate>Sat, 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>Taxes and TemSe</title>
		<link>http://www.dataxstream.com/2010/04/taxes-and-temse/</link>
		<comments>http://www.dataxstream.com/2010/04/taxes-and-temse/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 13:00:00 +0000</pubDate>
		<dc:creator>Wess Tobler</dc:creator>
				<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[FB_CALL_HANDLE]]></category>
		<category><![CDATA[PU19]]></category>
		<category><![CDATA[RAISE_EXCEPTION]]></category>
		<category><![CDATA[RSTS_WRITE]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAP Security]]></category>
		<category><![CDATA[SAPLSTMS]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[TemSe]]></category>
		<category><![CDATA[Wess Tobler]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.dataxstream.com/2009/10/sap-teched-09-demo-jam-liveblog-recap/</guid>
		<description><![CDATA[This blog is a recap of the liveblog of the  SAP TechEd 09 conference Demo Jam. To read in chronological order, start from the bottom and work your way up. Craig Stasila: 8:23 pm on October 13, 2009 Thanks for checking in to the SAP TechEd 09 Demo Jam. I hope you had as much [...]]]></description>
			<content:encoded><![CDATA[<p>This blog is a recap of the liveblog of the  SAP TechEd 09 conference Demo Jam.  To read in chronological order, start from the bottom and work your way up.</p>
<p><span id="more-2773"></span></p>
<div id="postlist" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size: 1em; line-height: 1.4em; color: #555555; list-style-type: none; list-style-position: initial; list-style-image: initial; ">
<div id="prologue-325" class="post user_id_2" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 6px; padding-right: 0px; padding-bottom: 6px; padding-left: 0px; overflow-x: visible; overflow-y: visible; border-top-width: 1px; border-top-style: solid; border-top-color: #bbbbbb; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #bbbbbb; ">
<h4 style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-style: normal; font-weight: 500; position: relative; font-size: 1em; line-height: 1.1em; ">Craig Stasila:<span> </span><span class="meta" style="font-size: 0.85em; margin-top: 0px; margin-right: 0px; margin-bottom: 1.5em; margin-left: 0px; color: #666666; "><span class="actions" style="position: absolute; right: 2px; top: 0px; color: #cccccc;">8:23 pm<span> </span><em>on</em><span> </span>October 13, 2009</span>
</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>
		<item>
		<title>Changing SAP IDOCs Status In Mass / Mass Deletion Of IDOCs</title>
		<link>http://www.dataxstream.com/2009/10/mass-status-change-sap-idoc/</link>
		<comments>http://www.dataxstream.com/2009/10/mass-status-change-sap-idoc/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 04:00:20 +0000</pubDate>
		<dc:creator>Tim Yates</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP Interface Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[ALE]]></category>
		<category><![CDATA[IDOC]]></category>
		<category><![CDATA[Tim Yates]]></category>
		<category><![CDATA[Timothy Yates]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=2295</guid>
		<description><![CDATA[<p>From time to time it becomes necessary to change the status of SAP IDOCs in SAP. The most common scenario is the requirement to mark SAP IDOCs for detetion. There is no good way to mass mark IDOCs for deletion via the standard IDOC processing transaction BD87. However there is a program that will let you change status.</p>
<p>RC1_IDOC_SET_STATUS</p>
<p><strong>Caution: This program should be used with great care and consideration. Inproper use of this program can result in data consistancy issues. Make sure you know what you are deleting, why you are deleting it, and what is required to correctly update you system after deleting.</strong></p>
]]></description>
			<content:encoded><![CDATA[<h2>Mass Change of SAP IDOC Status</h2>
<p>From time to time it becomes necessary to change the status of SAP IDOCs in SAP. The most common scenario is the requirement to mark SAP IDOCs for deletion. There is no good way to mass mark IDOCs for deletion via the standard IDOC processing transaction BD87. However there is a program that will let you change status.</p>
<p>RC1_IDOC_SET_STATUS</p>
<p><strong>CAUTION: This program should be used with great care and consideration. Improper use of this program can result in data consistency issues. Make sure you know what you are deleting, why you are deleting it, and what is required to correctly update you system after deleting.</strong></p>
<p><span id="more-2295"></span></p>
<h2>Example: Marking IDOCs for Deletion In Mass</h2>
<p>It is pretty typical for support users to set the deletion flag on IDOCs that have been incorrectly created and have errored. When there are a small number of IDOCs this is possible via transaction BD87.</p>
<p>An inbound IDOC in error will have the status 51, when it is marked for deletion it has a status of 68.</p>
<p>A view of the IDOCs to be deleted in WE05.</p>
<p><img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051528.jpg" alt="200910051528.jpg" width="480" height="96" /></p>
<p>To mass delete IDOCs run the following program via SE38: RC1_IDOC_SET_STATUS via the SAP Transaction: SE38</p>
<p><img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051501.jpg" alt="200910051501.jpg" width="480" height="238" /></p>
<p>There are only a few parameters on the selection screen for this program. It is most important that you correctly restrict the IDOCs you select with this program. The program automatically defaults to marking inbound IDOCs in error for deletion.</p>
<p>To mass select IDOCs to be marked for deletion select: <img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051504.jpg" alt="200910051504.jpg" width="43" height="20" /></p>
<p><img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051522.jpg" alt="200910051522.jpg" width="480" height="325" /></p>
<p>There are many options for selecting and restricting the IDOCs to Mass process. Select by single value or range. Restrict by single value or range.</p>
<p>The <img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051506.jpg" alt="200910051506.jpg" width="23" height="17" /> allows you to upload a list of IDOCs from a text file.</p>
<p>The <img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051514.jpg" alt="200910051514.jpg" width="24" height="20" /> allows you to apply a list from your clipboard.</p>
<p><img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051531.jpg" alt="200910051531.jpg" width="480" height="221" /></p>
<p>Execute the program <img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051529.jpg" alt="200910051529.jpg" width="25" height="20" /></p>
<p><img src="http://www.dataxstream.com/wp-content/uploads/2009/10/2009100515291.jpg" alt="200910051529.jpg" width="480" height="189" /></p>
<p>Check the status of the 3 IDOCs in WE05</p>
<p><img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051534.jpg" alt="200910051534.jpg" width="480" height="102" /></p>
<h2>Example: Changing IDOCs Status To Repost</h2>
<p>It is also possible to use this program to reset an IDOC so that it can be reprocessed.</p>
<p><img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051549.jpg" alt="200910051549.jpg" width="480" height="222" /></p>
<p>With the following selection we are going to reset the IDOCs with status 68 marked for deletion back to status 64 to try and reprocess them.</p>
<p>Execute the program <img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051529.jpg" alt="200910051529.jpg" width="25" height="20" /></p>
<p><img src="http://www.dataxstream.com/wp-content/uploads/2009/10/2009100515291.jpg" alt="200910051529.jpg" width="480" height="189" /></p>
<p><img src="http://www.dataxstream.com/wp-content/uploads/2009/10/200910051548.jpg" alt="200910051548.jpg" width="480" height="97" /></p>
<p>As you can see, program RC1_IDOC_SET_STATUS is very helpful, but please be careful when you use it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/10/mass-status-change-sap-idoc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Transporting&#8221; scheduled jobs</title>
		<link>http://www.dataxstream.com/2009/09/transporting-scheduled-jobs/</link>
		<comments>http://www.dataxstream.com/2009/09/transporting-scheduled-jobs/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 04:00:20 +0000</pubDate>
		<dc:creator>Wess Tobler</dc:creator>
				<category><![CDATA[SAP Basis Blog]]></category>
		<category><![CDATA[SAP Technical]]></category>
		<category><![CDATA[SAP Basis]]></category>
		<category><![CDATA[SAP Batch]]></category>
		<category><![CDATA[SE10]]></category>
		<category><![CDATA[SM36]]></category>
		<category><![CDATA[SM37]]></category>
		<category><![CDATA[STMS]]></category>
		<category><![CDATA[TBTCP]]></category>
		<category><![CDATA[Wess Tobler]]></category>

		<guid isPermaLink="false">http://www.dataxstream.com/?p=2219</guid>
		<description><![CDATA[‘Transport’ is a touch misleading. In this example, we aren’t using STMS to move a job from one AS/CI to another, but we aren’t recreating it from scratch either. Scenario: Our SAP servers are running on HP-UX hosts with Oracle 10g databases. Recently, the client underwent SPS application to production servers. The process called for [...]]]></description>
			<content:encoded><![CDATA[<p>‘Transport’ is a touch misleading.  In this example, we aren’t using STMS to move a job from one AS/CI to another, but we aren’t recreating it from scratch either.</p>
<p><strong>Scenario:</strong></p>
<p>Our SAP servers are running on HP-UX hosts with Oracle 10g databases.  Recently, the client underwent SPS application to production servers.  The process called for the stopping of scheduled jobs during update.  The jobs were to be restarted as directed by team leads.  When a request to restart job was executed, it was unable to be completed because the required job had “disappeared”.  The job in this scenario was over 100 steps with different programs and variants being executed.  Due to time constraints and the possibility of incorrect data entry, manually recreating the job in SM36 was not an option.</p>
<p>It is possible to extract a job definition directly out of the tables in which it is stored and then reinsert it into another instance (i.e. copy the job definition from your Q box and drop it back in Production).  For demonstration purposes we will call our source server Q01 and our destination server P01.  The job used in this example will be OUR_LOST_JOB.</p>
<p><strong>NOTE: The steps used in this tip may utilize commands that access and modify data in ways not explicitly endorsed by SAP.  Therefore, the use of this tip should be done at your own risk.</strong></p>
<p><span id="more-2219"></span></p>
<ol>
<li>In Q01 verify that OUR_LOST_JOB is available by looking for it in SM37 or searching table TBTCP via SE16.</li>
<li>Log into the Q01 unix host as q01adm ( &lt;sid&gt;adm ).</li>
<li>Using your preferred text editor, create a file named ‘sm37exp.r3tr and enter the following statements adjusting entries to match your landscape:
<p><code>Export
client=[source client]
file=’SM37export’
select * from tbtco where JOBNAME=‘OUR_LOST_JOB’
select * from tbtci where JOBNAME=‘OUR_LOST_JOB’
select * from tbtcp where JOBNAME=‘OUR_LOST_JOB’
select * from tbtcs where JOBNAME=‘OUR_LOST_JOB’
select * from btcctl where JOBNAME=‘OUR_LOST_JOB’
select * from btcsev where JOBNAME=‘OUR_LOST_JOB’
select * from btcuev where JOBNAME=‘OUR_LOST_JOB’
select * from btcsed where JOBNAME=‘OUR_LOST_JOB’
select * from btcued where JOBNAME=‘OUR_LOST_JOB’
select * from btcevtjob where JOBNAME=‘OUR_LOST_JOB’
select * from btcdelay where JOBNAME=‘OUR_LOST_JOB’</code></li>
<li>As q01adm, execute the following command: 
<code>R3trans –u 8 –w  sm37exp.log sm37exp.r3tr</code>
This string creates the SM37export file which contains the actual job definitions, as well as sm37exp.log.  Review the log to ensure a successful export (warnings are OK).</li>
<li>Copy the SM37export file to P01 p01adm home directory (/home/p01adm) and make sure to chmod 777 to grant full permissions.</li>
<li>Login to the P01 CI unix host as p01adm</li>
<li>Use your favored text editor to create the file ‘sm37imp.r3tr’ with the following contents:
<code>import
client=[destination client]
file=’SM37export’
buffersync=yes</code></p>
<li>Execute the following command in /home/p01adm:
<code>R3trans –u 8 –w sm37imp.log sm37imp.r3tr</code></li>
<li>Check the log to see if the import was successful</li>
<li>Log into P01 and search for OUR_LOST_JOB via SM37.  It should be under status: Finished.</li>
<li>To recreate the job in &#8220;scheduled&#8221; status, execute menu “Job-&gt;copy”</li>
</ol>
<p>The job has now been copied and is in status: “Scheduled”.  From here you can either manually release the job or reschedule it for its proper frequency.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dataxstream.com/2009/09/transporting-scheduled-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
