<?xml version="1.0" encoding="ASCII"?><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/"
		>
<channel>
	<title>Comments for The Crystal Reports&#174; Underground</title>
	<atom:link href="http://kenhamady.com/cru/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://kenhamady.com/cru</link>
	<description>Independent news, tips and thoughts from a Crystal Reports expert</description>
	<lastBuildDate>Wed, 17 Feb 2010 13:27:09 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Screen Problems in the Standard Report Wizard by Lior</title>
		<link>http://kenhamady.com/cru/archives/579/comment-page-1#comment-77</link>
		<dc:creator>Lior</dc:creator>
		<pubDate>Wed, 17 Feb 2010 13:27:09 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/?p=579#comment-77</guid>
		<description>About the lining up all the fields like the wizard does, I recently found that if you highlight all fields (cntr+click or shift+click) from the available database fields and then drag them all to the report it will line them all up including the headers. It brought back the looping of the wizard that I missed so much in 8.5. Its a huge time saver when you just want all fields, but  don&#039;t want to start from scratch. Also useful when the page is too small and the wizard makes each field tiny to cram them on one page.</description>
		<content:encoded><![CDATA[<p>About the lining up all the fields like the wizard does, I recently found that if you highlight all fields (cntr+click or shift+click) from the available database fields and then drag them all to the report it will line them all up including the headers. It brought back the looping of the wizard that I missed so much in 8.5. Its a huge time saver when you just want all fields, but  don&#8217;t want to start from scratch. Also useful when the page is too small and the wizard makes each field tiny to cram them on one page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vanishing data in Btrieve by Ken Hamady</title>
		<link>http://kenhamady.com/cru/archives/638/comment-page-1#comment-76</link>
		<dc:creator>Ken Hamady</dc:creator>
		<pubDate>Sat, 30 Jan 2010 21:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/?p=638#comment-76</guid>
		<description>Yes, Btrieve is not alone in this. I have run into this before in several environments where I had to &#039;break&#039; the SQL to get things to work correctly.  It is probably the same index issue.  In some cases, especially when it is a filter field, putting the field in a formula isn&#039;t enough to keep it out of the SQL, which is why I have to resort to adding a function.</description>
		<content:encoded><![CDATA[<p>Yes, Btrieve is not alone in this. I have run into this before in several environments where I had to &#8216;break&#8217; the SQL to get things to work correctly.  It is probably the same index issue.  In some cases, especially when it is a filter field, putting the field in a formula isn&#8217;t enough to keep it out of the SQL, which is why I have to resort to adding a function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vanishing data in Btrieve by Ken Hamady</title>
		<link>http://kenhamady.com/cru/archives/638/comment-page-1#comment-75</link>
		<dc:creator>Ken Hamady</dc:creator>
		<pubDate>Sat, 30 Jan 2010 21:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/?p=638#comment-75</guid>
		<description>&lt;strong&gt;From Gordon Portanier of Crystalize:&lt;/strong&gt;

Coincidental to your posting yesterday I had the exact same situation that you mentioned with regard to Betrieve. The inexplicable returning of zero records. It wasn&#8217;t with a Betrieve back end but with another application. This time the backend was something called ProvideX. I&#8217;m using the ProvideX ODBC driver. I&#8217;ve had problems with it because it doesn&#8217;t support the UNION join which is annoying but today&#8217;s behavior is undocumented as far as I know. It took me a while to figure out what the issue was. So the statement:
 
SELECT TA.Field, TB.Field, TC.Field
FROM TA, TB, TC
WHERE (TA.F1=TB.F1) and (TA.F2 = TC.F2)

Returns a nice set of records. But adding a group on a field from TC causes an order by clause to drop in there and then we get the following:

SELECT TA.Field, TB.Field, TC.Field
FROM TA, TB, TC
WHERE (TA.F1=TB.F1) and (TA.F2 = TC.F2)
ORDER BY TC.Field

This returns a fat zero records. As soon as I saw this I knew exactly how to fix it because I had just read your posting. Using a formula instead of the field. I just put the field in the formula (I didn&#8217;t need to use Totext) so that Crystal Reports doesn&#8217;t pass the ORDER BY Clause into the SQL which is causing the issue. I then grouped on that and I was fine. Problem solved.</description>
		<content:encoded><![CDATA[<p><strong>From Gordon Portanier of Crystalize:</strong></p>
<p>Coincidental to your posting yesterday I had the exact same situation that you mentioned with regard to Betrieve. The inexplicable returning of zero records. It wasn&#8217;t with a Betrieve back end but with another application. This time the backend was something called ProvideX. I&#8217;m using the ProvideX ODBC driver. I&#8217;ve had problems with it because it doesn&#8217;t support the UNION join which is annoying but today&#8217;s behavior is undocumented as far as I know. It took me a while to figure out what the issue was. So the statement:</p>
<p>SELECT TA.Field, TB.Field, TC.Field<br />
FROM TA, TB, TC<br />
WHERE (TA.F1=TB.F1) and (TA.F2 = TC.F2)</p>
<p>Returns a nice set of records. But adding a group on a field from TC causes an order by clause to drop in there and then we get the following:</p>
<p>SELECT TA.Field, TB.Field, TC.Field<br />
FROM TA, TB, TC<br />
WHERE (TA.F1=TB.F1) and (TA.F2 = TC.F2)<br />
ORDER BY TC.Field</p>
<p>This returns a fat zero records. As soon as I saw this I knew exactly how to fix it because I had just read your posting. Using a formula instead of the field. I just put the field in the formula (I didn&#8217;t need to use Totext) so that Crystal Reports doesn&#8217;t pass the ORDER BY Clause into the SQL which is causing the issue. I then grouped on that and I was fine. Problem solved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Crystal Reports 2010? by Ken Hamady</title>
		<link>http://kenhamady.com/cru/archives/1006/comment-page-1#comment-74</link>
		<dc:creator>Ken Hamady</dc:creator>
		<pubDate>Fri, 29 Jan 2010 01:52:08 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/?p=1006#comment-74</guid>
		<description>Marcin,

Thanks for the comment.  That is a handy feature introduced by Millet Software in their the DataLink Viewer. At least it is nice to know that they are paying attention.</description>
		<content:encoded><![CDATA[<p>Marcin,</p>
<p>Thanks for the comment.  That is a handy feature introduced by Millet Software in their the DataLink Viewer. At least it is nice to know that they are paying attention.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Business Objects releases Viewer XI for Linux by mocoloco</title>
		<link>http://kenhamady.com/cru/archives/127/comment-page-1#comment-73</link>
		<dc:creator>mocoloco</dc:creator>
		<pubDate>Thu, 21 Jan 2010 05:25:34 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/archives/127#comment-73</guid>
		<description>This preview edition can no longer be found on the website of Business Objects/SAP, however I still have it and I&#039;ve created a convenient .deb package for it.  Since others may stumble onto this page I thought I&#039;d share.  Download available at http://www.easy-share.com/1909061199/crystalreportsviewer-12.0.1.r250_i386.deb</description>
		<content:encoded><![CDATA[<p>This preview edition can no longer be found on the website of Business Objects/SAP, however I still have it and I&#8217;ve created a convenient .deb package for it.  Since others may stumble onto this page I thought I&#8217;d share.  Download available at <a href="http://www.easy-share.com/1909061199/crystalreportsviewer-12.0.1.r250_i386.deb" rel="nofollow">http://www.easy-share.com/1909061199/crystalreportsviewer-12.0.1.r250_i386.deb</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Crystal Reports 2010? by Marcin Sulecki</title>
		<link>http://kenhamady.com/cru/archives/1006/comment-page-1#comment-72</link>
		<dc:creator>Marcin Sulecki</dc:creator>
		<pubDate>Thu, 14 Jan 2010 08:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/?p=1006#comment-72</guid>
		<description>I recommend article about CR for Visual Studio 2010: http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/14514 

I think that article describes few new functions in CR 2010 stand alone version.
For example the new read-only RPT file called RPTR.</description>
		<content:encoded><![CDATA[<p>I recommend article about CR for Visual Studio 2010: <a href="http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/14514" rel="nofollow">http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/14514</a> </p>
<p>I think that article describes few new functions in CR 2010 stand alone version.<br />
For example the new read-only RPT file called RPTR.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Server based options for Deploying Crystal Reports by Gary Parker</title>
		<link>http://kenhamady.com/cru/archives/995/comment-page-1#comment-71</link>
		<dc:creator>Gary Parker</dc:creator>
		<pubDate>Wed, 13 Jan 2010 17:40:55 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/?p=995#comment-71</guid>
		<description>Hi Ken

We&#039;ve been using rePORTAL her for about 2 years now and on the whole are happy with product.

We are running the application on a 4 server clustered web farm being used by over 700 users to access and manually run parameterised reports from multiple data sources, as well as having 1000+ reports scheduled each week.

I&#039;d be happy to answer any specific questions you may have about the product.

Regards

Gary</description>
		<content:encoded><![CDATA[<p>Hi Ken</p>
<p>We&#8217;ve been using rePORTAL her for about 2 years now and on the whole are happy with product.</p>
<p>We are running the application on a 4 server clustered web farm being used by over 700 users to access and manually run parameterised reports from multiple data sources, as well as having 1000+ reports scheduled each week.</p>
<p>I&#8217;d be happy to answer any specific questions you may have about the product.</p>
<p>Regards</p>
<p>Gary</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Selecting multiple objects (to copy or align) by Ken Hamady</title>
		<link>http://kenhamady.com/cru/archives/761/comment-page-1#comment-70</link>
		<dc:creator>Ken Hamady</dc:creator>
		<pubDate>Tue, 24 Nov 2009 00:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/?p=761#comment-70</guid>
		<description>Good point, thanks.</description>
		<content:encoded><![CDATA[<p>Good point, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Selecting multiple objects (to copy or align) by Dean Holsonbake</title>
		<link>http://kenhamady.com/cru/archives/761/comment-page-1#comment-69</link>
		<dc:creator>Dean Holsonbake</dc:creator>
		<pubDate>Mon, 23 Nov 2009 23:17:01 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/?p=761#comment-69</guid>
		<description>No need to hold down CTRL, deselecting and reselecting an object, to make the object the leader; simply click any grouped item and it will be promoted to the group leader. Just be sure not to misclick an ungrouped item or empty space - you&#039;ll deselect your whole group! I use CR10.</description>
		<content:encoded><![CDATA[<p>No need to hold down CTRL, deselecting and reselecting an object, to make the object the leader; simply click any grouped item and it will be promoted to the group leader. Just be sure not to misclick an ungrouped item or empty space &#8211; you&#8217;ll deselect your whole group! I use CR10.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CR 2008 doesn&#8217;t like Zebra Label Printers? by Ken Hamady</title>
		<link>http://kenhamady.com/cru/archives/183/comment-page-1#comment-68</link>
		<dc:creator>Ken Hamady</dc:creator>
		<pubDate>Sun, 11 Oct 2009 02:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://kenhamady.com/cru/?p=183#comment-68</guid>
		<description>SAP claims to have this fixed in SP2.  See the link update at the end of the article.</description>
		<content:encoded><![CDATA[<p>SAP claims to have this fixed in SP2.  See the link update at the end of the article.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
