<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: CRM and Le Tour</title>
	<atom:link href="http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/feed/" rel="self" type="application/rss+xml" />
	<link>http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/</link>
	<description>SAP, PHP, Eclipse, Software Development, Life, Cycling, Cricket</description>
	<lastBuildDate>Tue, 21 Apr 2009 18:18:30 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: bbm</title>
		<link>http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-849</link>
		<dc:creator>bbm</dc:creator>
		<pubDate>Fri, 27 Jul 2007 07:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-849</guid>
		<description>Maybe just a marker that can be easily remembered to search for later, or to add a break-point to without remembering exactly where it is.</description>
		<content:encoded><![CDATA[<p>Maybe just a marker that can be easily remembered to search for later, or to add a break-point to without remembering exactly where it is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-844</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 26 Jul 2007 12:49:05 +0000</pubDate>
		<guid isPermaLink="false">http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-844</guid>
		<description>It is weird.  A bored programmer not tidying up their code I guess.

I have often used

if 1 = 2.

If I don&#039;t want the code to be used, but want it to be available as active code.  The only real reason I would want that is for a message to be found when using a where used if it is called dynamically.

Can&#039;t think why you might use the reverse though.</description>
		<content:encoded><![CDATA[<p>It is weird.  A bored programmer not tidying up their code I guess.</p>
<p>I have often used</p>
<p>if 1 = 2.</p>
<p>If I don&#8217;t want the code to be used, but want it to be available as active code.  The only real reason I would want that is for a message to be found when using a where used if it is called dynamically.</p>
<p>Can&#8217;t think why you might use the reverse though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nigeljames</title>
		<link>http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-828</link>
		<dc:creator>nigeljames</dc:creator>
		<pubDate>Fri, 20 Jul 2007 08:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-828</guid>
		<description>Dennis - This is probably too much information for you but here goes.

Let&#039;s break down the statement:
if cl_crm_ic_services=&gt;greglemondmemorial = space.

This is an &#039;if&#039; statement meaning we are going to make a decision here.  They often look like this:
if  
do something.
else.
do anthother thing.
endif.

The example above is just the if line where the condition is:
cl_crm_ic_services=&gt;greglemondmemorial = space.
We are asking if something is equal to space.
&#039;Space&#039; in SAP speak is a reserved word meaning  a blank variable.
So we are going to do something if some variable is blank. That variable is cl_crm_ic_services=&gt;greglemondmemorial. This is a class or object  (cl_crm_ic_services ) and a property or attribute ( greglemondmemorial ) of the class. The funny =&gt; means that it is a static attribute. Static means that you don&#039;t have to create an object to get at the property - it is always available. 
So this means we are asking if a variable that hasn&#039;t been changed is still blank (its initial condition).

Did this help? 
My question is: Why? and why  choose the name greglemondmemorial? It is not really following any meaningful variable naming conventions.</description>
		<content:encoded><![CDATA[<p>Dennis &#8211; This is probably too much information for you but here goes.</p>
<p>Let&#8217;s break down the statement:<br />
if cl_crm_ic_services=&gt;greglemondmemorial = space.</p>
<p>This is an &#8216;if&#8217; statement meaning we are going to make a decision here.  They often look like this:<br />
if<br />
do something.<br />
else.<br />
do anthother thing.<br />
endif.</p>
<p>The example above is just the if line where the condition is:<br />
cl_crm_ic_services=&gt;greglemondmemorial = space.<br />
We are asking if something is equal to space.<br />
&#8216;Space&#8217; in SAP speak is a reserved word meaning  a blank variable.<br />
So we are going to do something if some variable is blank. That variable is cl_crm_ic_services=&gt;greglemondmemorial. This is a class or object  (cl_crm_ic_services ) and a property or attribute ( greglemondmemorial ) of the class. The funny =&gt; means that it is a static attribute. Static means that you don&#8217;t have to create an object to get at the property &#8211; it is always available.<br />
So this means we are asking if a variable that hasn&#8217;t been changed is still blank (its initial condition).</p>
<p>Did this help?<br />
My question is: Why? and why  choose the name greglemondmemorial? It is not really following any meaningful variable naming conventions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Howlett</title>
		<link>http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-826</link>
		<dc:creator>Dennis Howlett</dc:creator>
		<pubDate>Fri, 20 Jul 2007 05:19:57 +0000</pubDate>
		<guid isPermaLink="false">http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-826</guid>
		<description>Thomas - for those of us not used to reading code - what on earth does it mean? Otherwise, congrats on a SA winning a stage. Makes the heart sing.</description>
		<content:encoded><![CDATA[<p>Thomas &#8211; for those of us not used to reading code &#8211; what on earth does it mean? Otherwise, congrats on a SA winning a stage. Makes the heart sing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Well done Robbie Hunter &#171; Vendorprisey</title>
		<link>http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-822</link>
		<dc:creator>Well done Robbie Hunter &#171; Vendorprisey</dc:creator>
		<pubDate>Thu, 19 Jul 2007 18:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-822</guid>
		<description>[...] BTW. If you would like to see a rather odd SAP - Tour de France connection have a look at this post. [...]</description>
		<content:encoded><![CDATA[<p>[...] BTW. If you would like to see a rather odd SAP &#8211; Tour de France connection have a look at this post. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nithin</title>
		<link>http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-818</link>
		<dc:creator>Nithin</dc:creator>
		<pubDate>Wed, 18 Jul 2007 20:23:42 +0000</pubDate>
		<guid isPermaLink="false">http://nigeljames.wordpress.com/2007/07/18/crm-and-le-tour/#comment-818</guid>
		<description>Amazingly the BP screen is full of Joels frame, Joels BUPA MAP.....Who is this Joel</description>
		<content:encoded><![CDATA[<p>Amazingly the BP screen is full of Joels frame, Joels BUPA MAP&#8230;..Who is this Joel</p>
]]></content:encoded>
	</item>
</channel>
</rss>
