<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
   <channel>
      <title>Oracle BI Publisher Blog</title>
      <link>http://blogs.oracle.com/xmlpublisher/</link>
      <description>a blog for all things bip ...</description>
      <language>en</language>
      <copyright>Copyright 2009</copyright>
      <lastBuildDate>Fri, 20 Nov 2009 13:13:13 -0700</lastBuildDate>
      <generator>http://www.sixapart.com/movabletype/</generator>
      <docs>http://blogs.law.harvard.edu/tech/rss</docs> 

      
      <item>
         <title>Old Skool Crosstabbing</title>
         <description><![CDATA[<p>James came up with a cunning crosstab report <a href="http://forums.oracle.com/forums/thread.jspa?messageID=3918528">question</a> on the forum this week.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="CTab1.jpg" src="http://blogs.oracle.com/xmlpublisher/images/CTab1.jpg" width="527" height="188" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>Does not look that bad right? Sadly the new crosstab builder can not build what we need. Notice there is no summarization in the grid; just a listing of times for each employee, these are clock in/clock out times, no calculations.</p>

<p>Here's the data:</p>

<p> <pre>&lt;?xml version="1.0" ?&gt; <br />
&lt;rowset&gt;<br />
 &lt;row rownumber="1"&gt;<br />
 &lt;EMPL_NAME&gt;John&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Wednesday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/18/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;08:15&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="2"&gt;<br />
 &lt;EMPL_NAME&gt;John&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Wednesday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/18/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;12:15&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="3"&gt;<br />
 &lt;EMPL_NAME&gt;John&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Wednesday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/18/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;13:15&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="4"&gt;<br />
 &lt;EMPL_NAME&gt;John&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Wednesday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/18/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;17:30&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="5"&gt;<br />
 &lt;EMPL_NAME&gt;Mary&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Wednesday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/18/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;10:00&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="6"&gt;<br />
 &lt;EMPL_NAME&gt;Mary&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Wednesday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/18/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;14:15&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="7"&gt;<br />
 &lt;EMPL_NAME&gt;Mary&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Wednesday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/18/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;15:15&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="8"&gt;<br />
 &lt;EMPL_NAME&gt;Mary&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Wednesday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/18/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;19:30&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="1"&gt;<br />
 &lt;EMPL_NAME&gt;John&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Thursday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/19/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;07:50&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="2"&gt;<br />
 &lt;EMPL_NAME&gt;John&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Thursday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/19/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;11:59&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="3"&gt;<br />
 &lt;EMPL_NAME&gt;John&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Thursday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/19/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;12:35&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="4"&gt;<br />
 &lt;EMPL_NAME&gt;John&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Thursday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/19/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;18:00&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="5"&gt;<br />
 &lt;EMPL_NAME&gt;Mary&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Thursday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/19/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;9:00&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="6"&gt;<br />
 &lt;EMPL_NAME&gt;Mary&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Thursday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/19/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;13:25&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
  &lt;row rownumber="7"&gt;<br />
 &lt;EMPL_NAME&gt;Mary&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Thursday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/19/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;14:45&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
 &lt;row rownumber="8"&gt;<br />
 &lt;EMPL_NAME&gt;Mary&lt;/EMPL_NAME&gt; <br />
 &lt;DAY&gt;Thursday&lt;/DAY&gt; <br />
 &lt;DATE&gt;11/19/2009&lt;/DATE&gt; <br />
 &lt;TIME&gt;18:20&lt;/TIME&gt; <br />
 &lt;/row&gt;<br />
&lt;/rowset&gt;</pre></p>

<p>So I went back to the old skool crosstab methods and built it manually.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="CTab2.jpg" src="http://blogs.oracle.com/xmlpublisher/images/CTab2.jpg" width="505" height="93" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>Just a four celled table with an @column loop for the headings, regular for-each-group for the row headings, @cell loop for the 'measure' and then an inner 'current-group()' loop for the times. </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="CTab3.jpg" src="http://blogs.oracle.com/xmlpublisher/images/CTab3.jpg" width="613" height="407" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>You can get the RTF template <span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blogs.oracle.com/xmlpublisher/files/ToughCrossTab.rtf">here</a></span> if you need it.</p>

<p>Sometimes you can teach a new dog old tricks!</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/11/tough_crosstab.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/11/tough_crosstab.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">RTF</category>
        
        
          <category domain="http://www.sixapart.com/ns/types#tag">crosstab</category>
        
         <pubDate>Fri, 20 Nov 2009 13:13:13 -0700</pubDate>
      </item>
      
      <item>
         <title>BIP on ADF</title>
         <description><![CDATA[<p><a href="http://husaindalal.blogspot.com"></a>Shout out here for Hussein over on the ADF Dev to Dev blog. Nice article covering some of the BIP APIs and how to use them within an ADF project.</p>

<p><a href="http://husaindalal.blogspot.com/2009/11/integrating-bi-publisher-standalone.html">http://husaindalal.blogspot.com/2009/11/integrating-bi-publisher-standalone.html</a></p>

<p>Thanks to Jurgen and Klaus for finding Hussein and his prose.</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/11/bip_on_adf.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/11/bip_on_adf.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">APIs / Webservices</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">BI Publisher Enterprise</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">Integration</category>
        
        
         <pubDate>Wed, 18 Nov 2009 12:12:12 -0700</pubDate>
      </item>
      
      <item>
         <title>Social Networks ... I finally see the light!</title>
         <description><![CDATA[<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="fb.jpg" src="http://blogs.oracle.com/xmlpublisher/images/fb.jpg" width="117" height="117" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;" /></span>Completely off topic today, but something Im sure nearly all of you use. Social networks, whether it be Facebook, Twitter, MySpace, the list goes on, I'm sure you are using at least one. Jake over at the <a href="http://theappslab.com/">lab </a>has been a great flag bearer for the genre. I on the other hand have been somewhat skeptical, there are probably posts over on the <a href="http://theappslab.com/">lab </a>proving so. Yep, Im a dinosaur, even my kids tell me so and I listen to more modern new fangled music than they do.</p>

<p>I have to admit, I have a twitter account, not much used. A facebook account, more used but mainly down to the ease of posting something via my trusty but horribly cracked iPhone (that's another story) Its been great to keep up with current friends and colleagues and find old school buddies and catch up, its fun but then what? That's kinda where my interest wains...</p>

<p>That is until this past week. Back in March my wife opened an ice cream shop in our town, its more of a village, blink and you miss it. The shop has an accompanying website cos Im geeky like that - I think we are the only shop in the vill ... town to have one. We get hits and comments and I write a blog for it posting pictures, news, etc. Our advertising budget is not huge so print media for the most part is out and 'sadly' except for Leslie and her WSJ subscription, who reads a paper these daze?</p>

<p>What about online advertising? I'm skeptical of that too, I make a point of blocking the common hosting servers that slow web pages while down loading their ads. I ignore them if they do get through. A quick straw poll and I found that most of my friends ignore them. So what alternatives are there?</p>

<p>My wife is a huge Facebook fan, so many friends and to my mind spends far too long on it :0) Rather like the pot calling the kettle black I suppose. Her computer skills have improved immensely since using it thou, so I should not complain. She still hits the button or icon 5 or 6 times if the reaction is not instant; makes for some fun trying to close 20 windows on a laptop that has been brought to its knees by 20 copies of Adobe Illustrator being opened at the same time :0)</p>

<p>I spotted 'fan' pages on FB a few weeks back and thought what better way to get some 'viral' exposure for the business in the surrounding area. My kids 'Facebook' too and they spend even more time on it than my wife, that's when they are not texting of course. </p>

<p>Its not going to cost me a bean so I duly started putting together the fan page (still working on some custom FBML content.) But we are now posting updates, pictures, getting to the videos and some freebies for the more motivated.</p>

<p>I then invited all of my wife's friends to become fans; within the week we were up to 50, admittedly some were from the UK, Canada and California which was not so good but its still useful. Why useful? Because of the viral nature of Facebook, even if the first fans are remote, they have friends that see them 'fanning' the shop, so they fan the shop. And so it goes on, eventually (I hope) getting back to folks in our area who may not know about the shop. How many degrees of separation are facebookers apart? We are just starting to break out of the 'friends' stage with fans that we do not know. Some from afar but others closer, so its starting.  </p>

<p>Facebook, seems to have finally found it revenue stream in offering to target likely fans on their page with an ad on the right hand side of the page. Having already poo poo'ed online advertising earlier I dont think we'll be going there. Facebook does offer some great profiling thou, they know so much about users that I can run an add to 'male/female teenagers that live in our nearest town and like ice cream' ... awesome stuff! <br />
They do have another cool feature that I do want to use. Im going to need my sons' help and their nasty texting habit. They do not know this yet but they will be texting their 100's of friends to text FB to become fans of the shop, if they so wish. <br />
This is my master plan for world ice cream shop domination, getting more fans and the fans we want; ice cream eating fans that will nag their parents to bring them in.</p>

<p>This is all great but how about getting updates out there, we can move over to the fan page as administrators but what about other content? <span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="twitter-logo.png" src="http://blogs.oracle.com/xmlpublisher/images/twitter-logo.png" width="200" height="200" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></span> I created a 'twitter' account for the shop too, hey its free and 'real' people will find you, I think we boast more followers on twitter  (excluding the scantily clad bots that seem to plague every twitter account)  than fans on FB. <br />
Twitter is not on my wife's radar at the moment so we needed some way to get her shop FB updates out as tweets. Facebook does that for you, even from a fan page now, easy. To take it a stage further I wanted to be able to write a blog posting from our Wordpress install, get that to FB and then out as a tweet. That took some finding but there is a plugin out there that almost does it. With a little tweaking I can now write a blog posting, hit a button to publish to FB and then FB pushes it out to twitter. Perfect!</p>

<p>I have finally seen the light, at least for my wife's business. For other bigger companies, maybe yours? The likes of Coca Cola and others boast huge numbers of fans, that kind of product awareness is invaluable ... every little helps I say! We'll be pushing as hard as possible into the social networking frontier for our little shop.</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/11/social_networks_i_finally_see.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/11/social_networks_i_finally_see.html</guid>
        
        
          <category domain="http://www.sixapart.com/ns/types#tag">facebook</category>
        
          <category domain="http://www.sixapart.com/ns/types#tag">twitter</category>
        
         <pubDate>Tue, 17 Nov 2009 10:10:10 -0700</pubDate>
      </item>
      
      <item>
         <title>More Siebel - BIP Integration Goodness</title>
         <description><![CDATA[<p>More from my journey of Siebel- BIP integration discovery last week. It was a steep learning curve but none the less very useful.<br />
Firstly, there are 3 levels of integration available to Siebel 8.1.1 users</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="SiebelIntegration1.jpg" src="http://blogs.oracle.com/xmlpublisher/images/SiebelIntegration1.jpg" width="553" height="303" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p><br />
<h4>Level 1</h4><br />
<ul><li>Siebel stores and manages the templates and manages data generation via integration objects</li><br />
<li>At runtime, Siebel calls BIP via WS to process data+template to generate output and returns the document to the user.</li><br />
<li>BIP just acts as a publishing service for Siebel</li><br />
</ul></p>

<h4>Level 2</h4>
<ul><li>BIP stores the templates and a report definition. The report uses complex Siebel web services as its data source.</li> 
<li>At runtime, BIP is called via a button or menu item (custom), it then calls Siebel back via a WS to fetch the data (integration object)</li>
<li>BIP then generates output and returns the document to the Siebel UI</li>
<li>This is the recommended integration as user security can be applied to the data being returned by Siebel</li></ul>

<h4>Level 3</h4>
<ul><li>BIP stores the templates and a report definition. The report uses SQL or stored procedure calls to retrieve data from the underlying database</li>
<li>At runtime, BIP is called via a button or menu item (custom), BIP fetches data from Siebel DB</li>
<li>BIP generates output and returns to Siebel UI</li></ul>

<p>More details in a great white paper from John on the Siebel PM team, <span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://blogs.oracle.com/xmlpublisher/files/White_Paper_-_Siebel_BI_Publisher_Integration_Concepts.pdf">Siebel - BI Publisher Integration Concepts</a></span></p>

<p>If you are looking for info on how to migrate your existing Actuate reports in the context of Siebel - check out Kan's article over at the <a href="http://bipconsulting.blogspot.com/2009/08/actuate-to-bi-publisher-reports.html">BIP Consulting Blog</a> Once you have downloaded the migration assistant check out the viewlet and accompanying white paper.</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/11/more_siebel_-_bip_integration.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/11/more_siebel_-_bip_integration.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Siebel</category>
        
        
          <category domain="http://www.sixapart.com/ns/types#tag">migration</category>
        
          <category domain="http://www.sixapart.com/ns/types#tag">siebel</category>
        
         <pubDate>Mon, 16 Nov 2009 09:09:09 -0700</pubDate>
      </item>
      
      <item>
         <title>Setting HTML Titles</title>
         <description><![CDATA[<p>Generating HTML from BIP? Trying to set a title for the page? Stuck? Can't find out how? </p>

<p>Its not in the documentation yet but its pretty simple to do. In the template in MSWord use File->Properties->Summary->Title. </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="TitleProp.jpg" src="http://blogs.oracle.com/xmlpublisher/images/TitleProp.jpg" width="355" height="446" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p><br />
Enter your page title. Its only going to work for HTML for Excel and RTF output the Title property is filled. The title will not come through into your PDF outputs. The other properties are ignored in the final output. A little inconsistent I know, but that's the way it is today.<br />
</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/11/setting_html_titles.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/11/setting_html_titles.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">RTF</category>
        
        
         <pubDate>Fri, 13 Nov 2009 09:09:09 -0700</pubDate>
      </item>
      
      <item>
         <title>Getting data out of Excel to make a nice document</title>
         <description><![CDATA[<p>Want to thank Srikant Subramaniam from the Oracle Fusion Middleware for Apps team for prompting this post. </p>

<p>As much as we here at Oracle would like to think that all data is in a database -- an Oracle Database at that, the fact is that sometimes ... dare I say it ... data is kept in Excel spreadsheets. </p>

<p>Srikant's team maintains some information in an Excel spreadsheet.  To get this data into a nicely formatted PDF file was a tedious process that took 5 to 6 days. Srikant wanted to know if Publisher could help.  The challenge was how to get the data out of the Excel spreadsheet into an XML file.  After a little searching on the web, we worked out a way to do that.  </p>

<p>Now his team can generate the desired output in a couple of hours. Over 20 times faster than it used to take.  Saving at least 38 hours of precious time that can now be put toward other projects.</p>

<p>Srikant was kind enough to document this in a nice <a href="http://www.oracle.com/technology/tech/fmw4apps/misc/excel-pdf.pdf">tutorial</a>. The tutorial shows how to convert data from an Excel spreadsheet into a PDF document.  The Excel data consists of a set of addresses, that are then grouped and sorted using the BI Publisher Template Builder to create the RTF template and the output PDF file. Here are the <a href="http://www.oracle.com/technology/tech/fmw4apps/misc/excel-pdf.zip">supporting files</a> to run the tutorial.</p>

<p>Knowing that dates and nulls can sometimes be problematic, I took it a little further to test out an Excel spreadsheet with dates and nulls. Fortunately the NULL values are converted nicely and those elements with NULL values are absent in the resulting XML - just the way you want it so that values can be aggregated correctly.</p>

<p>The Dates however proved to be a little more challenging. In the XML data, they kept coming out as Excel number values and not in date canonical format. I was also using Excel 2007 so the process was a little different from what Srikant documented in the tutorial.  Here are the differences for Excel 2007 and what I found I had to do to get Dates to come out in the XML correctly.  Perhaps someone more clever has a better way ...</p>

<p>-- When converting the range to an XML List I was warned/prompted to use format or data type when mapping.  When I chose data type (which I thought would work) I ended up with dates as the Excel number values in the spreadsheet and the exported XML data.  So I went with "Use existing formatting" for the the mapping so the dates would still appear as dates in the spreadsheet.  </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="CnvrtRange2XMLList-UseFormat.png" src="http://blogs.oracle.com/xmlpublisher/2009/11/12/CnvrtRange2XMLList-UseFormat.png" width="686" height="560" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>However, exporting to XML still left the dates as Excel number values.</p>

<p>-- The "trick" is that you must create and apply a new "XML Map" (this appears to be the Excel term for XSD) that tells Excel that the date is to be mapped to an XML date format.  The first step is to generate the XSD file.  Set the focus in the data range and select "Create XSD files for the XML Schema at the active cell" from the XML Tools Add-in menu.  </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="CreateXSD.png" src="http://blogs.oracle.com/xmlpublisher/2009/11/12/CreateXSD.png" width="329" height="114" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>-- In the XSD you will see that the Date field is being treated as a string.  </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="XSDbefore0.png" src="http://blogs.oracle.com/xmlpublisher/2009/11/12/XSDbefore0.png" width="776" height="76" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>Modify it so that it's type is Date.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="XSDbefore.png" src="http://blogs.oracle.com/xmlpublisher/2009/11/12/XSDbefore.png" width="781" height="77" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>-- Upload the XSD as a new XML Map and map the field to this new XML map. Set focus on a cell in the region, right click and select the "XML Source" menu choice from the XML menu.  </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="XMLSource.png" src="http://blogs.oracle.com/xmlpublisher/2009/11/12/XMLSource.png" width="512" height="424" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>In the XML Source dialog click on the [XML Maps...] button.  Add the XSD you just modified and rename it to something meaningful.  Then delete the Root_Map that was there.  </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="AddXSDMap.png" src="http://blogs.oracle.com/xmlpublisher/2009/11/12/AddXSDMap.png" width="463" height="462" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>Click OK to return the XML Source dialog and drag and drop the Map elements onto the correct columns headers in the data range.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="dragNdropMap.png" src="http://blogs.oracle.com/xmlpublisher/2009/11/12/dragNdropMap.png" width="668" height="465" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>-- Now when you export to XML, the dates will be in canonical format and can be formatted correctly by the Template Builder or other XSL formatting tools.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="XML-RTF-PDF.png" src="http://blogs.oracle.com/xmlpublisher/2009/11/12/XML-RTF-PDF.png" width="901" height="505" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span><br />
</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/11/getting_data_out_of_excel_to_m.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/11/getting_data_out_of_excel_to_m.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Data Extraction</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">General</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">RTF</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">Templates</category>
        
        
         <pubDate>Thu, 12 Nov 2009 02:21:18 -0700</pubDate>
      </item>
      
      <item>
         <title>Whats in my data?</title>
         <description><![CDATA[<p>I have been working with the Siebel CRM integration today, a good learning curve and I have learnt a lot more than I wanted to about Siebel CRM. One thing I did get stuck on was that my template was not generating the results I was expecting.<br />
I went through and generated some sample data against what I thought was the integration object I was seeing on the page. Created my template, uploaded it, attached the report to the correct page. Went to that page and tried to generate the ouput, I was getting the header information but not the detail I was expecting. What to do?<br />
The integration is of the embedded variety ie Siebel generates the XML and calls BIP to process it with a template to return the result. So the XML structure and content is hidden at runtime. Pick the wrong integration object, as I did, and you're a little stuck. Most of it was ignorance on my part but I wanted to see what was in the XML, element names and values.</p>

<p>I came up with the following template to let me at least seethe elements and assigned values:</p>

<p>&lt;?for-each://*?&gt;<br />
 <br />
 Element: &lt;?local-name()?&gt; Value:&lt;?current()/text()?&gt;</p>

<p>&lt;?end for-each?&gt;</p>

<p>this pushed out</p>

<p>Element: ListOf_ssHlsCase Value:<br />
Element: ssHlsCase Value:<br />
Element: ssCaseNum Value:410194-14115562<br />
Element: ssCreatedDate Value:10/20/2009 07:26:40<br />
Element: ssDescription Value:<br />
Element: ssName Value:Lew Golden - - 10/20/2009<br />
Element: ssStage Value:Application<br />
Element: ssStatus Value:Active<br />
Element: ssSubStatus Value:<br />
Element: ssSubjectContactFirstName Value:Lew<br />
Element: ssSubjectContactLastName Value:Golden<br />
Element: ssSubjectFullName Value:<br />
Element: ssType Value:Other<br />
Element: ssId Value:8SIA-8EJMY<br />
Element: ssCreated Value:10/20/2009 07:26:40</p>

<p>Takes a little deciphering but I worked out that I was not using the integration object I thought I was, dagnabit! Useful thou I thought, so Im sharing it, enjoy!</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/11/whats_in_my_data.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/11/whats_in_my_data.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Templates</category>
        
        
         <pubDate>Tue, 10 Nov 2009 15:59:29 -0700</pubDate>
      </item>
      
      <item>
         <title>New Publisher Content on OTN</title>
         <description><![CDATA[<p>A Sunday post, I know, dedicated or what! It is however a lazy post of sorts. Im sitting in my wife's ice cream shop serving ice cream to non-existent customers on a chillsome Sunday. Thinking up new marketing strategies for my poor wife to implement and idly surfing the Publisher pages on OTN.</p>

<p>There's a bunch of new content out there from Reporting Plaforms for Applications to Integration with MSSharepoint (nice article). For me, the best practices paper is the best (no I didnt write it :0) its packed with info and the PM folks have put notes on each slide in the PDF. Just click the note icon in the bottom right for some information on what the slide is getting at.</p>

<p>Its Monday, for most of you reading this, ease into the week with a peruse of the Publisher pages - <a href="http://www.oracle.com/technology/products/xml-publisher/index.html">http://www.oracle.com/technology/products/xml-publisher/index.html</a> and a cup o java or char.</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/11/new_publisher_content_on_otn.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/11/new_publisher_content_on_otn.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Applications</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">BI Publisher Enterprise</category>
        
        
         <pubDate>Sun, 08 Nov 2009 13:55:28 -0700</pubDate>
      </item>
      
      <item>
         <title>Indenting Trees</title>
         <description><![CDATA[<p><big>T</big>he <a href="http://blogs.oracle.com/xmlpublisher/2009/10/siebel_integration_information.html">snow </a>has nearly all gone, just in time for the next batch! It was a douzy of a storm, fun driving conditions, amazing how much you forget over the hot dry 'roaded' summer. My newly licensed son was itching to get out there. Mom wouldn't let him, I had to agree, our insurance couldn't take it and we have way too many trees near our house. The trees looked very pretty thou and speaking of trees (what a segue) I have been asked numerous times if BIP can generate a tree structure, the more ambitious ask for an org chart. I plan to take a look at how to do the org chart another time, for now, how about a nice tree structure.</p>

<p>Between the two of us, Rob (colleague and data modeler extraordinaire) came up with a solution for a customer to generate this:</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="Tree1.jpg" src="http://blogs.oracle.com/xmlpublisher/images/Tree1.jpg" width="280" height="326" class="mt-image-center" style="text-align: left; display: block; margin: 0 auto 20px;" /></span></p>

<p>Its a tree of sorts, nothing fancy, we just wanted to get the structure right, so there are no details under the headings. Its getting the indenting correct that was the trick. The customer had a pretty fixed data structure and did not want to use nested tables.</p>

<p>The template is pretty simple, just a funky trick to get the indenting working. I mentioned the customer had a pretty fixed data structure. It made life easier, they only had 3 levels to worry about so the code to handle the indenting could be pretty straightforward and somewhat 'hard coded' for the data set.</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="tree4.jpg" src="http://blogs.oracle.com/xmlpublisher/images/tree4.jpg" width="583" height="379" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>It also has the advantage that the tree is in the right order ie</p>

<p>Level1<br />
-Level2<br />
-Level2<br />
-- Level3<br />
-Level2<br />
Level1<br />
Level1<br />
...</p>

<p>The template looks like this </p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="Tree2.jpg" src="http://blogs.oracle.com/xmlpublisher/images/Tree2.jpg" width="268" height="125" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>the fields contain</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="Tree3.jpg" src="http://blogs.oracle.com/xmlpublisher/images/Tree3.jpg" width="656" height="353" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>Of course the most interesting field is the C</p>

<p>&lt;?if:number(LEVELS)=1?&gt;<br />
 &lt;?ORG_LONG_NAME?&gt;<br />
&lt;?end if?&gt;<br />
&lt;?if:number(LEVELS)=2?&gt;<br />
 &lt;?attribute@inblock:start-indent;'20.0pt'? &gt; &lt;?ORG_LONG_NAME?&gt;<br />
&lt;?end if?&gt;<br />
&lt;?if:number(LEVELS)=3?&gt;<br />
 &lt;?attribute@inblock:start-indent;'30.0pt'?&gt; &lt;?ORG_LONG_NAME?&gt;<br />
&lt;?end if?&gt;</p>

<p>A chhose statement would have worked just as well. You can see the dependence on the data order and the structure or more specifically LEVELS element. We need to check that to know how big the indentation should be.<br />
The @block is also important, we need that to get the indentation to show only on the current text and not affect anything else. If we had been using tables we could have gotten around that.<br />
Now we could have been a little smarter and written something to handle any number of levels ... answers on the back on a new Mac Book Pro 15-inch: 2.8GHz 4Gb 500Gb HD :0)</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/11/dynamic_indents.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/11/dynamic_indents.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">RTF</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">XSL/XPATH</category>
        
        
         <pubDate>Thu, 05 Nov 2009 10:10:10 -0700</pubDate>
      </item>
      
      <item>
         <title>Siebel Integration Information</title>
         <description><![CDATA[<p>Been too danged busy again, we got a nice 2-3ft of snow over the last two daze, digging out has been fun! Nearly lost the car ...</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="car.jpg" src="http://blogs.oracle.com/xmlpublisher/images/car.jpg" width="604" height="453" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></span></p>

<p>A quick Friday post on Siebel integration. Two pretty useful docs that John from the Siebel PM team recently shared with me.</p>

<p>8.1.1 TOI: Siebel BI Publisher Integration Functional Overview</p>

<p>   <a href="http://oukc.oracle.com/static05/opn/login/?c=576002953&t=offering">http://oukc.oracle.com/static05/opn/login/?c=576002953&t=offering</a></p>

<p>Siebel Reporting Migration FAQ - Actuate and BI Publisher (external visible)</p>

<p><a href="https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=764097.1">https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=764097.1</a></p>

<p>Have a good weekend</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/10/siebel_integration_information.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/10/siebel_integration_information.html</guid>
        
        
         <pubDate>Fri, 30 Oct 2009 13:56:57 -0700</pubDate>
      </item>
      
      <item>
         <title>Installing BI Publisher into Weblogic Server 11g</title>
         <description><![CDATA[<p>Thursday, October 22nd, 2009 by Mark Rittman</p>

<p>I was on-site yesterday helping an ISV integrate BI Publisher into their product, and hit a few issues getting the product installed and running on the Weblogic application server. BI Publisher comes integrated out-of-the-box with OC4J and Oracle Application Server, but you'll need to install and configure it manually to work with other application servers [...]</p>

<p>You can read the full article <a href="http://www.rittmanmead.com/2009/10/22/installing-bi-publisher-into-weblogic-servier-11g/">HERE</a>.</p>

<p>Many Thanks to Mark for his posting.<br />
</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/10/installing_bi_publisher_into_w.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/10/installing_bi_publisher_into_w.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Installation &amp; Administration</category>
        
        
         <pubDate>Fri, 23 Oct 2009 17:08:43 -0700</pubDate>
      </item>
      
      <item>
         <title>Row Filler Followup</title>
         <description><![CDATA[<p>Since my post last week or was it the week before. The weeks are blurring by at the moment. Last week, I could swear it was warm and sunny here in Colorado, the fish were biting along with the mozzies and sitting on our deck you could here the 'crickets' chirping into the night. Back in July, we got nightly visits from a huge bear which I managed to capture on film. He was a sausage stealing, trash tipping pain in the butt but we were not going to argue :0)</p>

<p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://blogs.oracle.com/xmlpublisher/images/bear.jpg"><img alt="bear.jpg" src="http://blogs.oracle.com/xmlpublisher/assets_c/2009/10/bear-thumb-600x450-1644.jpg" width="600" height="450" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /></a></span></p>

<p>Now its 27F, sorry 'Rest of the Worlders', I have been assimilated. Its imperial measurements for me all the way. I even know what a 'quart' is, I think in inches and cups for measuring. America is sometimes staggering in its arrogance for the rest of the world! Maybe a bit strong but you know what I mean.<br />
 Yep, its freezing cold the wind is howling, the windshield (another Americanism along with tail pipe, thats a good one) blower on the car can not keep up with the freezing rain and I have to scrape it to see. Come back Summer, maybe not the bear thou!</p>

<p>Anyhoo, my last post on <a href="http://blogs.oracle.com/xmlpublisher/2009/10/row_filler.html">row filling </a>and the added requirement that I did not cover got some folks into action. Most notably, Lakshmanan and the Ice Man aka Ike Wiggins. Both of them were way ahead of me. I guess from a need, born of necessity i.e. get it done for a customer. Rather than my approach of, 'when I can find time', they have independently come up with solutions to handle the row wrapping issue I mentioned at the end of the last post.</p>

<p>Shout outs are due and if you use their methods, please drop a quick mail of thanks.</p>

<p>Lakshmanan's solution is available <a href="http://www.oorch.com/2009/10/06/how-to-handle-fixed-row-with-text-wrapping-in-bi-desktop-publisher/">here</a>. Some other great posts on EBS related tidbits (another PC'ed American term) available on his blog.</p>

<p>Ike's solution is available <a href="http://bipublisher.blogspot.com/2009/08/bi-publisher-advanced-line-wrapping.html">here </a> Ike has also posted sample template and data <a href="http://web.me.com/beth.wiggins/ike/bipublisher/LIMITING%20TEXT%20PER%20ROW.zip">here</a>. Like the blog's new look and feel Ike, very suave!</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/10/since_my_post_last_week.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/10/since_my_post_last_week.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">RTF</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">XSL/XPATH</category>
        
        
          <category domain="http://www.sixapart.com/ns/types#tag">fixed row</category>
        
          <category domain="http://www.sixapart.com/ns/types#tag">row wrapping</category>
        
         <pubDate>Fri, 16 Oct 2009 08:08:08 -0700</pubDate>
      </item>
      
      <item>
         <title>OOW 2009 Drawing to a Close</title>
         <description><![CDATA[<p>One more day to go at Open World 2009.  It's been quite the busy week both with sessions and at the demopod.  </p>

<p>Even though each of us were scheduled to be at the pod for a few hours each day, we found ourselves staying longer and longer because there were just so many folks to talk to.  In fact, Glenn from Show Management came by the pod first thing this morning to tell us that the BI Publisher demopod had some pretty significant numbers the day before.  We really stood out.  This would explain why most of us are now losing our voices.  But, that's what we get for being so excited to talk at length about our fabulous product! </p>

<p>Sadly, the demogrounds are now closed.  But, we still have sessions tomorrow.</p>

<p>You won't want to miss Nick & Klaus at 12pm in Moscone West 3014.  They'll be educating you on Best Practices for BI Publisher.</p>

<p>There are also sessions on E-Business Suite, Peoplesoft, Siebel and the last hands on JD Edwards lab.  Stop by and check them out.</p>

<p>  </p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/10/oow_2009_drawing_to_a_close.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/10/oow_2009_drawing_to_a_close.html</guid>
        
        
         <pubDate>Wed, 14 Oct 2009 21:09:33 -0700</pubDate>
      </item>
      
      <item>
         <title>Neither Rain, Nor Sleet ...</title>
         <description><![CDATA[<p>... nor gloom of night stays these couriers from the swift completion of their appointed rounds."   Don't know if it's still true for the US Mail but, the Publisher team was on the go despite the <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2009/10/13/MNL81A4SDF.DTL">"epic" storm in San Francisco</a> today.</p>

<p>Siva Ramanathan from <a href="http://www.mastercard.com/us/company/en/index.html">MasterCard</a> and Noelle <br />
<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="Siva-Noelle.png" src="http://blogs.oracle.com/xmlpublisher/Siva-Noelle.png" width="335" height="186" class="mt-image-none" style="" /></span><br />
gave a great session on Publisher in E-Business Suite, PeopleSoft, Siebel, JD Edwards EnterpriseOne, and JD Edwards World.  </p>

<p>Siva gave a great demonstration of using the BI Publisher Template Builder.  He also told the story of how it used to take a business analyst, an IT developer, and a consultant from the vendor of their 3rd party tool <strong>THREE MONTHS</strong> to create a new PO or modify an existing one (like changing the signature) - and this was happening across 50 operating units.  Now, using BI Publisher, it takes a business analyst <strong>only THREE DAYS </strong>to create a new PO or implement changes and does not require the intervention of IT nor anyone else.  Imagine ... <em>30 times faster implementation time with 1/3 the people</em> to create or edit a Purchase Order ... <em>Priceless</em>.  </p>

<p>Noelle, the superwoman of many hats, covered each Application's integration with Publisher and an update of what's new and planned for each.  The audience was hanging on her every word when they weren't laughing at her jokes.</p>

<p>There was a little less traffic at the demo pod today ... possibly due the storm but, Fethiye, Leslie, Noelle, Alin, Klaus, Nikos and Pradeep kept the demos going all day long.  And of course, Osama-bey, the inspiration behind the innovation, was there to pitch in as needed.</p>

<p>Also saw a presentation packed with lots of great details on using Publisher in PeopleSoft by Millie Babicz and Todd Kummer of <a href="http://www.spearmc.com/">SpearMC Consulting</a>.</p>

<p>Coming up on Wednesday::</p>

<p></p>

<p></p>

<p></p>

<p><br />
<ul><br />
	<li>S308767 Innovations Using Oracle XML Publisher<br />
Manoj Chitre, Claremont Graduate University<br />
Moscone West L3 Room 3005<br />
1:45 pm - 2:15 pm</li><br />
	<li>S310889 Creating Custom Siebel Reports, Using Oracle Business Intelligence Publisher<br />
John Bedford, Oracle; Pradeep Sharma, Oracle	<br />
Moscone West L2 Room 2009<br />
1:45 pm - 2:15 pm<br />
</li><br />
	<li>S311667: Modernize JD Edwards EnterpriseOne Reports with Embedded Oracle Business Intelligence Publisher	<br />
Gurbinder Bali, Oracle; Jeff Erickson, Oracle; Michael Zheng, Oracle<br />
Marriott Hotel Golden Gate A1<br />
5:00 pm - 6:00 pm<br />
</li><br />
</ul><br />
</p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/10/neither_rain_nor_sleet.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/10/neither_rain_nor_sleet.html</guid>
        
          <category domain="http://www.sixapart.com/ns/types#category">Applications</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">E Business Suite</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">JD Edwards</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">PeopleSoft</category>
        
          <category domain="http://www.sixapart.com/ns/types#category">Siebel</category>
        
        
         <pubDate>Wed, 14 Oct 2009 00:53:53 -0700</pubDate>
      </item>
      
      <item>
         <title>Convert Today, Rain Tomorrow</title>
         <description><![CDATA[<p>There seemed to be a fair amount of questions today at the demo pod around converting from Actuate/Crystal/Oracle Reports to BI Publisher.  Allow me to point out where you can find tools and/or information to make your conversion to BI Publisher a little smoother.<br><br />
<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://blogs.oracle.com/xmlpublisher/corey_n_ike.jpg"><img alt="corey_n_ike.jpg" src="http://blogs.oracle.com/xmlpublisher/assets_c/2009/10/corey_n_ike-thumb-303x146-1717.jpg" width="303" height="146" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;" /></a></span><br />
To convert Oracle Reports to BI Publisher, Ike Wiggins demo'd a cool little conversion utility at a session this afternoon.  <a href="http://bipublisher.blogspot.com/2009/05/bi-publisher-reports6i-to-bip.html">Check out his blog</a>, where you'll find the download, a little tutorial and FAQs.</p>

<p>To convert Crystal Reports to BI Publisher, sorry, no utility here.  But, check out the <a href="http://download.oracle.com/otndocs/xmlp/CrystaltoBIP.pdf">white paper on the OTN</a>.  We heard from Corey at Gallup today on how they were able to convert their Crystal reports to BI Publisher.    </p>

<p>To convert Actuate Reports to BI Publisher, there's a conversion utility.  Just do a search on My Oracle Support for patch # 8288024.</p>

<p>And now for what's coming tomorrow....</p>

<p>Well, if you believe the forecast, I suggest a raincoat, umbrella, galoshes...you know, those awful black rubber boats you had to wear as a kid.  I hear we're in for a lot of the wet stuff.  Hopefully,  the anticipated precipitation doesn't stop people from making it to the session over at the Westin where we'll be talking about how E-Business Suite, JD Edwards, Peoplesoft and Siebel use BI Publisher to produce those pixel perfect reports.  </p>

<p>If you're at the Marriott, you might want to check out Paul Rodwick's session on the Oracle BI Roadmap and Strategy.  Check out where Oracle BI's headed.  </p>

<p>And, yes, there's another one of the JD Edwards hands on labs too.<br />
<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://blogs.oracle.com/xmlpublisher/golf.jpg"><img alt="golf.jpg" src="http://blogs.oracle.com/xmlpublisher/assets_c/2009/10/golf-thumb-210x109-1715.jpg" width="210" height="109" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></a></span><br />
If you just want to stay high and dry, come over to Moscone West and play a little golf at the Callaway Experience.  </p>

<p>Did I mention, the BI Publisher demo pod is really, really close to the Callaway Golf Experience?  No?  Well, it is.  We're in the back on the right, Pod W-083.  Our knowledgeable BI Publisher team will be on hand to show you demos and answer your questions.   <br />
<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><a href="http://blogs.oracle.com/xmlpublisher/demopod_monday.jpg"><img alt="demopod_monday.jpg" src="http://blogs.oracle.com/xmlpublisher/assets_c/2009/10/demopod_monday-thumb-399x222-1720.jpg" width="399" height="222" class="mt-image-right" style="float: center; margin: 0 0 20px 20px;" /></a></span></p>]]></description>
         <link>http://blogs.oracle.com/xmlpublisher/2009/10/convert_today_rain_tomorrow.html</link>
         <guid>http://blogs.oracle.com/xmlpublisher/2009/10/convert_today_rain_tomorrow.html</guid>
        
        
         <pubDate>Mon, 12 Oct 2009 23:39:14 -0700</pubDate>
      </item>
      
   </channel>
</rss>
