 




<?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/"
		>
<channel>
	<title>Comments on: READC on load all AS/400 subfile</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/readc-on-load-all-subfile/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/readc-on-load-all-subfile/</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 05:05:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: splat</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/readc-on-load-all-subfile/#comment-82795</link>
		<dc:creator>splat</dc:creator>
		<pubDate>Mon, 25 Oct 2010 14:51:29 +0000</pubDate>
		<guid isPermaLink="false">#comment-82795</guid>
		<description><![CDATA[Nickhutcheson, if you can&#039;t change that CA key to CF, an alternative to &lt;b&gt;ReadC&lt;/b&gt; is to chain to the subfile.]]></description>
		<content:encoded><![CDATA[<p>Nickhutcheson, if you can&#8217;t change that CA key to CF, an alternative to <b>ReadC</b> is to chain to the subfile.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/readc-on-load-all-subfile/#comment-82680</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Thu, 21 Oct 2010 21:38:51 +0000</pubDate>
		<guid isPermaLink="false">#comment-82680</guid>
		<description><![CDATA[&lt;i&gt;Does anyone have the positions for the highest RRN on a Subfile?&lt;/i&gt;

Positions? You mean in the INFDS? Should be a 2-byte binary (integer) number at offset 13, positions 14-15. It&#039;s the total number of rows in all active subfiles.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>Does anyone have the positions for the highest RRN on a Subfile?</i></p>
<p>Positions? You mean in the INFDS? Should be a 2-byte binary (integer) number at offset 13, positions 14-15. It&#8217;s the total number of rows in all active subfiles.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nickhutcheson</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/readc-on-load-all-subfile/#comment-82666</link>
		<dc:creator>nickhutcheson</dc:creator>
		<pubDate>Thu, 21 Oct 2010 17:07:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-82666</guid>
		<description><![CDATA[Yeah, it looks bad.  Two issues here:  1. The difference between CA and CF.  solved. 2. *in40 is the indicator on the readC,   - solved.

Does anyone have the positions for the highest RRN on a Subfile?  This was found in the old CPF programmer&#039;s guide a hundred years ago.  It was right after the Lowest RRN currently displayed on the subfile.  This info comes from the INFDS.]]></description>
		<content:encoded><![CDATA[<p>Yeah, it looks bad.  Two issues here:  1. The difference between CA and CF.  solved. 2. *in40 is the indicator on the readC,   &#8211; solved.</p>
<p>Does anyone have the positions for the highest RRN on a Subfile?  This was found in the old CPF programmer&#8217;s guide a hundred years ago.  It was right after the Lowest RRN currently displayed on the subfile.  This info comes from the INFDS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: splat</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/readc-on-load-all-subfile/#comment-82664</link>
		<dc:creator>splat</dc:creator>
		<pubDate>Thu, 21 Oct 2010 16:22:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-82664</guid>
		<description><![CDATA[This is a guess, but it looks like *in40 is an EOF or ERR indicator for SFLRCD.  You&#039;d be better off adding the &lt;b&gt;(E)&lt;/b&gt; extender to the &lt;b&gt;ReadC&lt;/b&gt; operation and using &lt;b&gt;If %EOF(display file name) or %Error&lt;/b&gt; instead of &lt;b&gt;If *in40&lt;/b&gt;.]]></description>
		<content:encoded><![CDATA[<p>This is a guess, but it looks like *in40 is an EOF or ERR indicator for SFLRCD.  You&#8217;d be better off adding the <b>(E)</b> extender to the <b>ReadC</b> operation and using <b>If %EOF(display file name) or %Error</b> instead of <b>If *in40</b>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/readc-on-load-all-subfile/#comment-82604</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Wed, 20 Oct 2010 01:48:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-82604</guid>
		<description><![CDATA[There is no way to know the answer from what you have shown us. As Phil noted, we have no clue what *IN40 is. It might be set on or off by any statement elsewhere in the program.

I&#039;m not at all clear why you would use an indicator at that point anyway -- you should be using the %EOF() builtin function, assuming that you want to know when you&#039;ve reached the end of changed records.

The only answer that comes to mind is &quot;If you don&#039;t want *IN40 on at that point, then don&#039;t set it on.&quot;

Tom]]></description>
		<content:encoded><![CDATA[<p>There is no way to know the answer from what you have shown us. As Phil noted, we have no clue what *IN40 is. It might be set on or off by any statement elsewhere in the program.</p>
<p>I&#8217;m not at all clear why you would use an indicator at that point anyway &#8212; you should be using the %EOF() builtin function, assuming that you want to know when you&#8217;ve reached the end of changed records.</p>
<p>The only answer that comes to mind is &#8220;If you don&#8217;t want *IN40 on at that point, then don&#8217;t set it on.&#8221;</p>
<p>Tom</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.013 seconds using memcached
Object Caching 324/327 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 07:19:43 -->