 




<?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: AS400, CLLE OPENID Already Exist Error</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/</link>
	<description></description>
	<lastBuildDate>Mon, 20 May 2013 18:21:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/#comment-114637</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Thu, 27 Dec 2012 07:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/#comment-114637</guid>
		<description><![CDATA[One large possibility is that you called the program earlier in the same job, and there was an error that caused an exit early from the program. If you call the program again, the file could still be open in the job with the same open ID. You should ensure that the file is closed with error handling code when errors happen. Try running CLOF       OPNID(M1AMC00) from a command line in the job that has the error. -- Tom]]></description>
		<content:encoded><![CDATA[<p>One large possibility is that you called the program earlier in the same job, and there was an error that caused an exit early from the program. If you call the program again, the file could still be open in the job with the same open ID. You should ensure that the file is closed with error handling code when errors happen. Try running CLOF       OPNID(M1AMC00) from a command line in the job that has the error. &#8212; Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sureyz</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/#comment-114636</link>
		<dc:creator>Sureyz</dc:creator>
		<pubDate>Thu, 27 Dec 2012 07:13:20 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/#comment-114636</guid>
		<description><![CDATA[I just called the same program in different session, now its working fine ..
thanks

But what was the problem Mr.Tom ?

Surey]]></description>
		<content:encoded><![CDATA[<p>I just called the same program in different session, now its working fine ..<br />
thanks</p>
<p>But what was the problem Mr.Tom ?</p>
<p>Surey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/#comment-114634</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Thu, 27 Dec 2012 06:36:40 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/#comment-114634</guid>
		<description><![CDATA[Before anything else, try calling the program in a new session. Either start a second session and test the program or sign off, sign back on and test the program. If you get the error in a new session, check the joblog for any previous errors related to the file. Post results back here. -- Tom]]></description>
		<content:encoded><![CDATA[<p>Before anything else, try calling the program in a new session. Either start a second session and test the program or sign off, sign back on and test the program. If you get the error in a new session, check the joblog for any previous errors related to the file. Post results back here. &#8212; Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sureyz</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/#comment-114632</link>
		<dc:creator>Sureyz</dc:creator>
		<pubDate>Thu, 27 Dec 2012 06:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/as400-clle-openid-already-exist-error/#comment-114632</guid>
		<description><![CDATA[DCL        VAR(&amp;TXT) TYPE(*CHAR) LEN(100)           
CHGVAR     VAR(&amp;TXT) VALUE(&#039;DEP&#039;  *GT &#039; *CAT &#039;01&#039;)
                                                    
OVRDBF     FILE(M1AMC00) SHARE(*YES) SEQONLY(*NO)   
                                                    
OPNQRYF    FILE((*LIBL/M1AMC00)) OPTION(*ALL) +     
             QRYSLT(&amp;TXT) KEYFLD(*FILE) SEQONLY(*NO)
                                                    
CALL       PGM(NONRPG)                           
                                                    
DLTOVR     FILE(M1AMC00)                            
CLOF       OPNID(M1AMC00)                           

this is my code i have already closed the file using CLOF .. but still im getting the same error. ]]></description>
		<content:encoded><![CDATA[<p>DCL        VAR(&amp;TXT) TYPE(*CHAR) LEN(100)<br />
CHGVAR     VAR(&amp;TXT) VALUE(&#8216;DEP&#8217;  *GT &#8216; *CAT &#8217;01&#8242;)</p>
<p>OVRDBF     FILE(M1AMC00) SHARE(*YES) SEQONLY(*NO)   </p>
<p>OPNQRYF    FILE((*LIBL/M1AMC00)) OPTION(*ALL) +<br />
             QRYSLT(&amp;TXT) KEYFLD(*FILE) SEQONLY(*NO)</p>
<p>CALL       PGM(NONRPG)                           </p>
<p>DLTOVR     FILE(M1AMC00)<br />
CLOF       OPNID(M1AMC00)                           </p>
<p>this is my code i have already closed the file using CLOF .. but still im getting the same error. </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 3/10 queries in 0.042 seconds using memcached
Object Caching 309/315 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-20 18:53:18 -->