<?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>Siebel Consultant &#187; Siebel behaviour</title>
	<atom:link href="http://siebelconsultant.net/category/siebel-behaviour/feed/" rel="self" type="application/rss+xml" />
	<link>http://siebelconsultant.net</link>
	<description>Diary of a Siebel Consultant</description>
	<lastBuildDate>Wed, 27 Jan 2010 07:59:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Removing trailing spaces in eScript</title>
		<link>http://siebelconsultant.net/removing-trailing-spaces-in-escript/</link>
		<comments>http://siebelconsultant.net/removing-trailing-spaces-in-escript/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 06:04:41 +0000</pubDate>
		<dc:creator>Wim</dc:creator>
				<category><![CDATA[Siebel behaviour]]></category>
		<category><![CDATA[eScript]]></category>

		<guid isPermaLink="false">http://siebelconsultant.net/removing-trailing-spaces-in-escript/</guid>
		<description><![CDATA[At the moment in Siebel, there is no trim function in eScript available to remove leading spacing in a string. In Vbscript, this function is available but not in eScript. A change request has been created to add this function to eScript.
After searching in supportweb, i came acros a piece of code provided by Siebel [...]]]></description>
			<content:encoded><![CDATA[<p>At the moment in Siebel, there is no trim function in eScript available to remove leading spacing in a string. In Vbscript, this function is available but not in eScript. A change request has been created to add this function to eScript.<br />
After searching in supportweb, i came acros a piece of code provided by Siebel to replace the Ltrim() function. The code looked like this:</p>
<blockquote><p>function trim(source)<br />
{<br />
var beginOfString = 0;<br />
var endOfString = 0;</p>
<p>for(var index = 0; index < source.length; index++)<br />
{<br />
if(source.charAt(index) != " ")<br />
if(beginOfString == 0)<br />
beginOfString = index;<br />
else<br />
endOfString = index;<br />
}</p>
<p>return(source.substring(beginOfString, endOfString + 1));<br />
}</p></blockquote>
<p>At first, it looked like the code did what it had to do, remove trailing spaces. But then I noticed that when there are no leading spaces, the code also removes the first letter in the string. Since this is unacceptable, I tried to wrote my own code and it turned out to be very simple.</p>
<p>My code looks like this:</p>
<blockquote><p>function trim(source)<br />
{<br />
while(source.charAt(0) == &#8221; &#8220;)<br />
{<br />
source = source.substring(1);<br />
}<br />
return(source);<br />
}</p></blockquote>
<p>Just a few lines of code but it does the work without removing letters if they are not spaces. Feel free to use the code whenever you need it.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://siebelconsultant.net/removing-trailing-spaces-in-escript/&amp;title=Removing+trailing+spaces+in+eScript" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://siebelconsultant.net/removing-trailing-spaces-in-escript/&amp;title=Removing+trailing+spaces+in+eScript" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://siebelconsultant.net/removing-trailing-spaces-in-escript/&amp;t=Removing+trailing+spaces+in+eScript" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Removing+trailing+spaces+in+eScript+-+http://tinyurl.com/mcns67+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://siebelconsultant.net/removing-trailing-spaces-in-escript/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://siebelconsultant.net/removing-trailing-spaces-in-escript/&amp;title=Removing+trailing+spaces+in+eScript" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Removing%20trailing%20spaces%20in%20eScript%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22At%20the%20moment%20in%20Siebel%2C%20there%20is%20no%20trim%20function%20in%20eScript%20available%20to%20remove%20leading%20spacing%20in%20a%20string.%20In%20Vbscript%2C%20this%20function%20is%20available%20but%20not%20in%20eScript.%20A%20change%20request%20has%20been%20created%20to%20add%20this%20function%20to%20eScript.%0AAfter%20searching%20in%20supportweb%2C%20i%20came%20acros%20a%20piece%20of%20code%20pr%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://siebelconsultant.net/removing-trailing-spaces-in-escript/" rel="nofollow" title="Email this to a friend?">Email this to a friend?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://siebelconsultant.net/removing-trailing-spaces-in-escript/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Blocked after export</title>
		<link>http://siebelconsultant.net/blocked-after-export/</link>
		<comments>http://siebelconsultant.net/blocked-after-export/#comments</comments>
		<pubDate>Sun, 11 Feb 2007 17:15:46 +0000</pubDate>
		<dc:creator>Wim</dc:creator>
				<category><![CDATA[Siebel behaviour]]></category>

		<guid isPermaLink="false">http://siebelconsultant.net/blocked-after-export/</guid>
		<description><![CDATA[A common bug in the Siebel client is that a user gets blocked after exporting data to a csv file.
When the users chooses &#8216;Export&#8217; from the menu and saves the file to the harddrive, the hourglass symbol doesn&#8217;t change back to the mouse pointer. Strangely enough this only happens when doing a save and not [...]]]></description>
			<content:encoded><![CDATA[<p>A common bug in the Siebel client is that a user gets blocked after exporting data to a <abbr title="Comma Seperated Values">csv</abbr> file.</p>
<p>When the users chooses &#8216;Export&#8217; from the menu and saves the file to the harddrive, the hourglass symbol doesn&#8217;t change back to the mouse pointer. Strangely enough this only happens when doing a save and not when you open the csv file.</p>
<p>The solution to this problem is very simple. To change the hourglass back to the mousepointer just use the combination ctrl+8 or ctrl+shift+8 (use the 8 on the alphanumeric part of the keyboard, not on the numeric part).</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://siebelconsultant.net/blocked-after-export/&amp;title=Blocked+after+export" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://siebelconsultant.net/blocked-after-export/&amp;title=Blocked+after+export" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://siebelconsultant.net/blocked-after-export/&amp;t=Blocked+after+export" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Blocked+after+export+-+http://tinyurl.com/lt53w8+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://siebelconsultant.net/blocked-after-export/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://siebelconsultant.net/blocked-after-export/&amp;title=Blocked+after+export" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Blocked%20after%20export%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22A%20common%20bug%20in%20the%20Siebel%20client%20is%20that%20a%20user%20gets%20blocked%20after%20exporting%20data%20to%20a%20csv%20file.%0A%0AWhen%20the%20users%20chooses%20%27Export%27%20from%20the%20menu%20and%20saves%20the%20file%20to%20the%20harddrive%2C%20the%20hourglass%20symbol%20doesn%27t%20change%20back%20to%20the%20mouse%20pointer.%20Strangely%20enough%20this%20only%20happens%20when%20doing%20a%20save%20an%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://siebelconsultant.net/blocked-after-export/" rel="nofollow" title="Email this to a friend?">Email this to a friend?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://siebelconsultant.net/blocked-after-export/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Siebel reports and Acrobat Reader</title>
		<link>http://siebelconsultant.net/siebel-reports-and-acrobat-reader/</link>
		<comments>http://siebelconsultant.net/siebel-reports-and-acrobat-reader/#comments</comments>
		<pubDate>Thu, 08 Feb 2007 07:08:32 +0000</pubDate>
		<dc:creator>Wim</dc:creator>
				<category><![CDATA[Siebel behaviour]]></category>

		<guid isPermaLink="false">http://siebelconsultant.net/siebel-reports-and-acrobat-reader/</guid>
		<description><![CDATA[On my current project, we were facing some problems with reporting. When the users try to print a report, they got the pop-up where they could select there printer and press ok to start the print job. However, the job wouldn&#8217;t start. Afterwards, if they click on the print icon in Acrobat Reader the reports [...]]]></description>
			<content:encoded><![CDATA[<p>On my current project, we were facing some problems with reporting. When the users try to print a report, they got the pop-up where they could select there printer and press ok to start the print job. However, the job wouldn&#8217;t start. Afterwards, if they click on the print icon in Acrobat Reader the reports gets printed.</p>
<p>After opening an SR on Support Web, we where told that our version of Acrobat Reader is not supported by Siebel. We are using version 7.0.1 but Siebel is only supporint version 6.0.1. Although Acrobat recently launched version 8 of there PDF read software, Siebel still supports version 6.</p>
<p>When asking if they know when Acrobat Reader 7.0.1 will be supported, the support guy respond to me that he couldn&#8217;t tell and that even Siebel 8 is only supporting version 6.</p>
<p>So if you are facing a simular problem, you best downgrade your Acrobat Reader to version 6.0 (which can be found <a target="_blank" href="http://www.adobe.com/products/acrobat/readstep2_allversions.html">here</a>) or try the workaround solution. Maybe &#8211; with a lot of luck &#8211; printing reports might work with version 8, but that is still something I need to test.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://siebelconsultant.net/siebel-reports-and-acrobat-reader/&amp;title=Siebel+reports+and+Acrobat+Reader" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://siebelconsultant.net/siebel-reports-and-acrobat-reader/&amp;title=Siebel+reports+and+Acrobat+Reader" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://siebelconsultant.net/siebel-reports-and-acrobat-reader/&amp;t=Siebel+reports+and+Acrobat+Reader" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Siebel+reports+and+Acrobat+Reader+-+http://tinyurl.com/ldnle6+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://siebelconsultant.net/siebel-reports-and-acrobat-reader/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://siebelconsultant.net/siebel-reports-and-acrobat-reader/&amp;title=Siebel+reports+and+Acrobat+Reader" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Siebel%20reports%20and%20Acrobat%20Reader%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22On%20my%20current%20project%2C%20we%20were%20facing%20some%20problems%20with%20reporting.%20When%20the%20users%20try%20to%20print%20a%20report%2C%20they%20got%20the%20pop-up%20where%20they%20could%20select%20there%20printer%20and%20press%20ok%20to%20start%20the%20print%20job.%20However%2C%20the%20job%20wouldn%27t%20start.%20Afterwards%2C%20if%20they%20click%20on%20the%20print%20icon%20in%20Acrobat%20Reader%20the%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://siebelconsultant.net/siebel-reports-and-acrobat-reader/" rel="nofollow" title="Email this to a friend?">Email this to a friend?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://siebelconsultant.net/siebel-reports-and-acrobat-reader/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Symbolic strings</title>
		<link>http://siebelconsultant.net/symbolic-strings/</link>
		<comments>http://siebelconsultant.net/symbolic-strings/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 19:31:52 +0000</pubDate>
		<dc:creator>Wim</dc:creator>
				<category><![CDATA[Siebel behaviour]]></category>

		<guid isPermaLink="false">http://siebelconsultant.net/symbolic-strings/</guid>
		<description><![CDATA[Since I&#8217;m still in the Siebel learning phase, everything is new to me. So today I found out something strange about symbolic strings.
I had to change the spelling of a word in the entire application. Since we used symbolic strings for this, I thought it was enough to change the symbolic string and everywhere in [...]]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;m still in the Siebel learning phase, everything is new to me. So today I found out something strange about symbolic strings.</p>
<p>I had to change the spelling of a word in the entire application. Since we used symbolic strings for this, I thought it was enough to change the symbolic string and everywhere in the application the correct spelling would be applied.</p>
<p>But no, apparently, you have to compile every object where you use the symbolic string. For me, this comes as a chock. I thought the purpose of symbolic strings was to simplify the use of titles and such in Siebel. But I guess I was wrong.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://siebelconsultant.net/symbolic-strings/&amp;title=Symbolic+strings" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://siebelconsultant.net/symbolic-strings/&amp;title=Symbolic+strings" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://siebelconsultant.net/symbolic-strings/&amp;t=Symbolic+strings" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Symbolic+strings+-+http://tinyurl.com/nvgsuz+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://siebelconsultant.net/symbolic-strings/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://siebelconsultant.net/symbolic-strings/&amp;title=Symbolic+strings" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Symbolic%20strings%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Since%20I%27m%20still%20in%20the%20Siebel%20learning%20phase%2C%20everything%20is%20new%20to%20me.%20So%20today%20I%20found%20out%20something%20strange%20about%20symbolic%20strings.%0A%0AI%20had%20to%20change%20the%20spelling%20of%20a%20word%20in%20the%20entire%20application.%20Since%20we%20used%20symbolic%20strings%20for%20this%2C%20I%20thought%20it%20was%20enough%20to%20change%20the%20symbolic%20string%20and%20%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://siebelconsultant.net/symbolic-strings/" rel="nofollow" title="Email this to a friend?">Email this to a friend?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://siebelconsultant.net/symbolic-strings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Siebel converts special characters</title>
		<link>http://siebelconsultant.net/siebel-converts-special-characters/</link>
		<comments>http://siebelconsultant.net/siebel-converts-special-characters/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 20:57:05 +0000</pubDate>
		<dc:creator>Wim</dc:creator>
				<category><![CDATA[Siebel behaviour]]></category>

		<guid isPermaLink="false">http://siebelconsultant.net/siebel-converts-special-characters/</guid>
		<description><![CDATA[Today I was working on the dataload from a Siebel 6 environment to a Siebel 7.8 environment. When I try to import the attachments into the new environment, I found that a lot of attachments where partially imported.
A look at the logfile learned me that those attachments could not be found. After a closer look, [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was working on the dataload from a Siebel 6 environment to a Siebel 7.8 environment. When I try to import the attachments into the new environment, I found that a lot of attachments where partially imported.</p>
<p>A look at the logfile learned me that those attachments could not be found. After a closer look, it seemed that all the attachment had special characters in the filename. With special characters I mean characters like é, è, à % and so on.</p>
<p>After comparing some of the attachments I noticed that Siebel converts these characters in other characters. So far I made this list of converts. The list is not yet complete but maybe it can be helpful:</p>
<blockquote><p>ô &#8211;&gt; (<br />
é &#8211;&gt; T<br />
è &#8211;&gt; F<br />
ï &#8211;&gt; n<br />
û &#8211;&gt; v<br />
à &#8211;&gt; a<br />
ê &#8211;&gt; O<br />
î &#8211;&gt; á<br />
² &#8211;&gt; ¦<br />
ö &#8211;&gt; ÷<br />
ç &#8211;&gt; t<br />
% &#8211;&gt; blank<br />
€ &#8211;&gt; Ç<br />
’ &#8211;&gt; Æ<br />
« &#8211;&gt; ½<br />
» &#8212; &gt; +</p></blockquote>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://siebelconsultant.net/siebel-converts-special-characters/&amp;title=Siebel+converts+special+characters" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://siebelconsultant.net/siebel-converts-special-characters/&amp;title=Siebel+converts+special+characters" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://siebelconsultant.net/siebel-converts-special-characters/&amp;t=Siebel+converts+special+characters" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Siebel+converts+special+characters+-+http://tinyurl.com/nkk5dy+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://siebelconsultant.net/siebel-converts-special-characters/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://siebelconsultant.net/siebel-converts-special-characters/&amp;title=Siebel+converts+special+characters" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Siebel%20converts%20special%20characters%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Today%20I%20was%20working%20on%20the%20dataload%20from%20a%20Siebel%206%20environment%20to%20a%20Siebel%207.8%20environment.%20When%20I%20try%20to%20import%20the%20attachments%20into%20the%20new%20environment%2C%20I%20found%20that%20a%20lot%20of%20attachments%20where%20partially%20imported.%0A%0AA%20look%20at%20the%20logfile%20learned%20me%20that%20those%20attachments%20could%20not%20be%20found.%20After%20a%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://siebelconsultant.net/siebel-converts-special-characters/" rel="nofollow" title="Email this to a friend?">Email this to a friend?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://siebelconsultant.net/siebel-converts-special-characters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
