<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Use this code</title>
	
	<link>http://code.xmlgadgets.com</link>
	<description>A Developer blog.</description>
	<lastBuildDate>Thu, 24 May 2012 12:10:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/usethiscode" /><feedburner:info uri="usethiscode" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>usethiscode</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Easytrieve program to parse a string</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/sWP8DaR5gGA/</link>
		<comments>http://code.xmlgadgets.com/2012/05/20/easytrieve-program-to-parse-a-string/#comments</comments>
		<pubDate>Sun, 20 May 2012 10:55:16 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[Easytrieve]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=384</guid>
		<description><![CDATA[Below program parses a string that contains 3 words which are separated by space. FULL-NAME contains &#8216;KARTHIK KAR THIK&#8217;, which is split into First name, Middle name and Last name. ----+----1----+----2----+----3----+----4----+----5----+----6----+----7-- DEFINE IND1 W 3 N VALUE 1 DEFINE IND2 W 3 N VALUE 1 DEFINE FLAG W 1 N VALUE 1 DEFINE FULL-NAME W [...]]]></description>
			<content:encoded><![CDATA[<p>Below program parses a string that contains 3 words which are separated by space.</p>
<p>FULL-NAME contains &#8216;KARTHIK KAR THIK&#8217;, which is split into First name, Middle name and Last name.</p>
<div style="background-color: #f8f8f8">
<pre class="prettyprint">----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
 DEFINE IND1 W 3 N VALUE 1
 DEFINE IND2 W 3 N VALUE 1
 DEFINE FLAG W 1 N VALUE 1
 DEFINE FULL-NAME W 30 A VALUE 'KARTHIK KAR THIK'
 DEFINE FIRST-NAME W 15 A
 DEFINE MID-NAME W 15 A
 DEFINE LAST-NAME W 15 A
 DEFINE FULL-NAME-ARRAY  FULL-NAME  1 A OCCURS 30
 DEFINE FIRST-NAME-ARRAY FIRST-NAME 1 A.OCCURS 15
 DEFINE MID-NAME-ARRAY   MID-NAME   1 A OCCURS 15
 DEFINE LAST-NAME-ARRAY  LAST-NAME  1 A OCCURS 15
 JOB INPUT NULL
   DO WHILE IND1 LE 30
      IF FULL-NAME-ARRAY(IND1) NE ' '
         CASE FLAG
            WHEN 1
              MOVE FULL-NAME-ARRAY(IND1) TO FIRST-NAME-ARRAY(IND2)
            WHEN 2
              MOVE FULL-NAME-APRAY(IND1) TO MID-NAME-ARRAY(IND2)
            WHEN 3
              MOVE FULL-NAME-ARRAY(IND1) TO LAST-NAME-ARRAY(IND2)
         END-CASE
         IND2 = IND2 + 1
      ELSE
         IND2 = 1
         FLAG = FLAG + 1
      END-IF
      IND1 = IND1 + 1
   END-DO
   DISPLAY FIRST-NAME
   DISPLAY MID-NAME
   DISPLAY LAST-NAME
STOP</pre>
</div>
<p>Output will be,</p>
<div style="background-color: black; color: lime">
<pre style="padding-bottom: 10px; padding-left: 10px; padding-right: 10px; padding-top: 10px">KARTHIK
KAR
THIK</pre>
</div>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/sWP8DaR5gGA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/05/20/easytrieve-program-to-parse-a-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/05/20/easytrieve-program-to-parse-a-string/</feedburner:origLink></item>
		<item>
		<title>COBOL – PERFORM a SECTION</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/wqQaXfh32TY/</link>
		<comments>http://code.xmlgadgets.com/2012/03/28/cobol-perform-a-section/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 15:10:38 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[COBOL]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=370</guid>
		<description><![CDATA[Below sample COBOL program explains how to PERFORM a SECTION. ----+----1----+----2----+----3----+----4----+----5----+----6----+----7-- IDENTIFICATION DIVISION. PROGRAM-ID. KARTEST5. * perform a SECTION ENVIRONMENT DIVISION. DATA DIVISION. PROCEDURE DIVISION. PERFORM MY-SECTION. GOBACK. MY-SECTION SECTION. DISPLAY 'INSIDE MY-SECTION' EXIT. Output of this program will be INSIDE MY-SECTION]]></description>
			<content:encoded><![CDATA[<p>Below sample COBOL program explains how to PERFORM a SECTION.</p>
<div style="background-color: #f8f8f8">
<pre class="prettyprint">----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
       IDENTIFICATION DIVISION.
       PROGRAM-ID.    KARTEST5.
      * perform a SECTION
       ENVIRONMENT DIVISION.
       DATA DIVISION.
       PROCEDURE DIVISION.
           PERFORM MY-SECTION.
           GOBACK.
       MY-SECTION SECTION.
           DISPLAY 'INSIDE MY-SECTION'
           EXIT.</pre>
</div>
<p>Output of this program will be</p>
<div style="background-color: black; color: lime">
<pre style="padding-bottom: 10px; padding-left: 10px; padding-right: 10px; padding-top: 10px">INSIDE MY-SECTION</pre>
</div>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/wqQaXfh32TY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/03/28/cobol-perform-a-section/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/03/28/cobol-perform-a-section/</feedburner:origLink></item>
		<item>
		<title>COBOL – IF ELSE ENDIF statement</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/mOWyeGb5GKI/</link>
		<comments>http://code.xmlgadgets.com/2012/03/28/cobol-if-else-endif-statement/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 14:33:26 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[COBOL]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=366</guid>
		<description><![CDATA[Below sample COBOL program explains the IF ELSE END-IF statement. You can avoid using END-IF by using dot (‘.’) as scope terminator. But it is not a good practice. better, always code a END-IF statement as scope terminator. ‘THEN’ is optional. If you want, THEN you can use it. ----+----1----+----2----+----3----+----4----+----5----+----6----+----7-- IDENTIFICATION DIVISION. PROGRAM-ID. KARTEST4. * [...]]]></description>
			<content:encoded><![CDATA[<p>Below sample COBOL program explains the IF ELSE END-IF statement. You can avoid using END-IF by using dot (‘.’) as scope terminator. But it is not a good practice. better, always code a END-IF statement as scope terminator.</p>
<p>‘THEN’ is optional. If you want, THEN you can use it.</p>
<div style="background-color: #f8f8f8">
<pre class="prettyprint">----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
       IDENTIFICATION DIVISION.
       PROGRAM-ID.    KARTEST4.
      * IF statement in cobol
       ENVIRONMENT DIVISION.
       DATA DIVISION.
       WORKING-STORAGE SECTION.
        01 MY-NUMBER  PIC 9(2) VALUE 2.
       PROCEDURE DIVISION.
      * simple IF statement
           IF MY-NUMBER = 2
              DISPLAY 'TWO'
           END-IF
      * IF ELSE statement
           IF MY-NUMBER IS EQUAL TO 2 THEN
              DISPLAY 'TWO'
           ELSE
              DISPLAY 'NOT TWO'
           END-IF
      * nested IF ELSE statement
           IF MY-NUMBER = 1
              DISPLAY 'ONE'
           ELSE
              IF MY-NUMBER = 2
                 DISPLAY 'TWO'
              ELSE
                 DISPLAY 'NEITHER ONE NOR TWO'
              END-IF
           END-IF
           GOBACK.</pre>
</div>
<p>Output of this program will be</p>
<div style="background-color: black; color: lime">
<pre style="padding-bottom: 10px; padding-left: 10px; padding-right: 10px; padding-top: 10px">TWO
TWO
TWO</pre>
</div>
<p></p>
<p><a href="http://publib.boulder.ibm.com/infocenter/pdthelp/v1r1/topic/com.ibm.debugtool.doc_7.1/eqa7rm02117.htm#rcmdico">Complete syntax of IF Command (COBOL)</a></p>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/mOWyeGb5GKI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/03/28/cobol-if-else-endif-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/03/28/cobol-if-else-endif-statement/</feedburner:origLink></item>
		<item>
		<title>COBOL–Working storage variables</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/TM4Dd1KN77U/</link>
		<comments>http://code.xmlgadgets.com/2012/03/28/cobolworking-storage-variables/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 14:02:44 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[COBOL]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=364</guid>
		<description><![CDATA[Working Storage section comes under DATA division. Different datatypes of COBOL are explained here. Below sample cobol program declares and Displays a working storage variable named ‘MY-STRING’. ----+----1----+----2----+----3----+----4----+----5----+----6----+----7-- IDENTIFICATION DIVISION. PROGRAM-ID. KARTEST3. * define and use a working storage variable ENVIRONMENT DIVISION. DATA DIVISION. WORKING-STORAGE SECTION. 01 MY-STRING PIC X(20) VALUE 'HELLO WORLD ! '. [...]]]></description>
			<content:encoded><![CDATA[<p>Working Storage section comes under DATA division. Different <a href="http://en.wikipedia.org/wiki/COBOL#Data_types">datatypes of COBOL</a> are explained <a href="http://en.wikipedia.org/wiki/COBOL#Data_types">here</a>.</p>
<p>Below sample cobol program declares and Displays a working storage variable named ‘MY-STRING’.</p>
<div style="background-color: #f8f8f8">
<pre class="prettyprint">----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
       IDENTIFICATION DIVISION.
       PROGRAM-ID.    KARTEST3.
      * define and use a working storage variable
       ENVIRONMENT DIVISION.
       DATA DIVISION.
       WORKING-STORAGE SECTION.
        01 MY-STRING  PIC X(20) VALUE 'HELLO WORLD ! '.
       PROCEDURE DIVISION.
           DISPLAY MY-STRING.
           GOBACK.</pre>
</div>
<p>Output of this program will be</p>
<div style="background-color: black; color: lime">
<pre style="padding-bottom: 10px; padding-left: 10px; padding-right: 10px; padding-top: 10px">HELLO WORLD !</pre>
</div>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/TM4Dd1KN77U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/03/28/cobolworking-storage-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/03/28/cobolworking-storage-variables/</feedburner:origLink></item>
		<item>
		<title>COBOL – Hello World program</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/k8tU-PTgiPw/</link>
		<comments>http://code.xmlgadgets.com/2012/03/28/cobol-hello-world-program/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 13:45:07 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[COBOL]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=362</guid>
		<description><![CDATA[Below sample cobol program has the minimal set of statements required. It contains all the four divisions and PROGRAM-ID is a mandatory statement which will have the program name. IDENTIFICATION DIVISION ENVIRONMENT DIVISION&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; DATA DIVISION&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; PROCEDURE DIVISION Divisions – &#62; Section –&#62; Paragraph –&#62; Statement. ----+----1----+----2----+----3----+----4----+----5----+----6----+----7-- IDENTIFICATION DIVISION. PROGRAM-ID. KARTEST2. ENVIRONMENT DIVISION. DATA DIVISION. PROCEDURE [...]]]></description>
			<content:encoded><![CDATA[<p>Below sample cobol program has the minimal set of statements required. It contains all the four divisions and PROGRAM-ID is a mandatory statement which will have the program name.</p>
<p>IDENTIFICATION DIVISION    <br />ENVIRONMENT DIVISION&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />DATA DIVISION&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />PROCEDURE DIVISION</p>
<p>Divisions – &gt; Section –&gt; Paragraph –&gt; Statement.</p>
<div style="background-color: #f8f8f8">
<pre class="prettyprint">----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
       IDENTIFICATION DIVISION.
       PROGRAM-ID.    KARTEST2.
       ENVIRONMENT DIVISION.
       DATA DIVISION.
       PROCEDURE DIVISION.
           DISPLAY 'HELLO WORLD ! ' .
           GOBACK.</pre>
</div>
<p>Output of this program will be</p>
<div style="background-color: black; color: lime">
<pre style="padding-bottom: 10px; padding-left: 10px; padding-right: 10px; padding-top: 10px">HELLO WORLD !</pre>
</div>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/k8tU-PTgiPw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/03/28/cobol-hello-world-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/03/28/cobol-hello-world-program/</feedburner:origLink></item>
		<item>
		<title>Continuation character (+) usage in Easytrieve</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/HZgVdiv_isU/</link>
		<comments>http://code.xmlgadgets.com/2012/03/20/continuation-character-usage-in-easytrieve/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 14:01:47 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=353</guid>
		<description><![CDATA[If you want to continue any statement to multiple lines, use PLUS (+) at the end of each line until the statement is complete. LIST ON JOB INPUT NULL DISPLAY '1ST LINE' + '2ND LINE' + 'AND 3RD LINE' STOP *]]></description>
			<content:encoded><![CDATA[<p>If you want to continue any statement to multiple lines, use PLUS (+) at the end of each line until the statement is complete.</p>
<div style="background-color: #f8f8f8">
<pre class="prettyprint"> LIST ON
 JOB INPUT NULL
 DISPLAY '1ST LINE'     +
         '2ND LINE'     +
         'AND 3RD LINE'
 STOP
*</pre>
</div>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/HZgVdiv_isU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/03/20/continuation-character-usage-in-easytrieve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/03/20/continuation-character-usage-in-easytrieve/</feedburner:origLink></item>
		<item>
		<title>simple and nested IF-ELSE-ENDIF statement in Easytrieve</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/Mv63flKCmOg/</link>
		<comments>http://code.xmlgadgets.com/2012/03/20/simple-and-nested-if-else-endif-statement-in-easytrieve/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 13:46:18 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[Easytrieve]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=350</guid>
		<description><![CDATA[IF ELSE ENDIF statement in Easytrieve is similar to how we do in COBOL. Below are some sample programs that will help you understand. LIST ON DEFINE WS-FIVE W 5 N VALUE 5 JOB INPUT NULL IF WS-FIVE EQ 5 DISPLAY 'WS-FIVE IS 5' END-IF STOP LIST ON DEFINE WS-FIVE W 5 N VALUE 5 [...]]]></description>
			<content:encoded><![CDATA[<p>IF ELSE ENDIF statement in Easytrieve is similar to how we do in COBOL.</p>
<p>Below are some sample programs that will help you understand.</p>
<div style="background-color: #f8f8f8">
<pre class="prettyprint"> LIST ON
 DEFINE WS-FIVE W 5 N VALUE 5
 JOB INPUT NULL
 IF WS-FIVE EQ 5
    DISPLAY 'WS-FIVE IS 5'
 END-IF
 STOP</pre>
</div>
<div style="background-color: #f8f8f8">
<pre class="prettyprint"> LIST ON
 DEFINE WS-FIVE W 5 N VALUE 5
 JOB INPUT NULL
 IF WS-FIVE EQ 5
    DISPLAY 'WS-FIVE IS 5'
 ELSE
    DISPLAY 'WS-FIVE IS NOT 5'
 END-IF
 STOP</pre>
</div>
<div style="background-color: #f8f8f8">
<pre class="prettyprint"> LIST ON
 DEFINE WS-NUM W 5 N VALUE 6
 JOB INPUT NULL
 IF WS-NUM EQ 5
    DISPLAY 'WS-NUM IS 5'
 ELSE
    IF WS-NUM EQ 6
       DISPLAY 'WS-NUM IS 6'
    ELSE
       DISPLAY 'WS-NUM IS NOT 5 OR 6'
    END-IF
 END-IF
 STOP</pre>
</div>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/Mv63flKCmOg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/03/20/simple-and-nested-if-else-endif-statement-in-easytrieve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/03/20/simple-and-nested-if-else-endif-statement-in-easytrieve/</feedburner:origLink></item>
		<item>
		<title>Comments in Easytrieve (start with *)</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/QKTFgTQC8vI/</link>
		<comments>http://code.xmlgadgets.com/2012/03/20/comments-in-easytrieve-start-with/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 13:39:34 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[Easytrieve]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=347</guid>
		<description><![CDATA[Comment lines need to start with an asterisk ( * ). There is no multi line comments in Easytrieve. For every comment line, you need to have * as the first non-blank character. example: LIST ON JOB INPUT NULL * this a comment * this is another comment line DISPLAY 'THIS IS NOT A COMMENT' [...]]]></description>
			<content:encoded><![CDATA[<p>Comment lines need to start with an asterisk ( * ). There is no multi line comments in Easytrieve. For every comment line, you need to have * as the first non-blank character.</p>
<p>example:</p>
<div style="background-color: #f8f8f8">
<pre class="prettyprint"> LIST ON
 JOB INPUT NULL
* this a comment
 * this is another comment line
 DISPLAY 'THIS IS NOT A COMMENT'
 STOP
*</pre>
</div>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/QKTFgTQC8vI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/03/20/comments-in-easytrieve-start-with/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/03/20/comments-in-easytrieve-start-with/</feedburner:origLink></item>
		<item>
		<title>Easytrieve Error messages A0** and B0**</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/hzN-CqgiSdg/</link>
		<comments>http://code.xmlgadgets.com/2012/03/14/easytrieve-error-messages-a0-and-b0/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 14:37:36 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[Easytrieve]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=336</guid>
		<description><![CDATA[A001 File OPEN Error A002 Invalid block Size A003 Insufficient Core storage A005 I/O error A007 Table input not in sequence A008 Too many table entries A009 report processing terminated due to sort error A012 Invalid Length of file name A013 wrong record length for a file B003 Expected continuation not received B004 Report Exceeds [...]]]></description>
			<content:encoded><![CDATA[<div style="background-color: white">
<pre class="prettyprint">A001 File OPEN Error
A002 Invalid block Size
A003 Insufficient Core storage
A005 I/O error
A007 Table input not in sequence
A008 Too many table entries
A009 report processing terminated due to sort error
A012 Invalid Length of file name
A013 wrong record length for a file

B003 Expected continuation not received
B004 Report Exceeds page size
B007 Invalid IF END-if pairing
B010 Invalid Block size
B011 Table input not in sequence
B012 Duplicate name for a file, field or report
B027 Not a valid name file,field or report
B048 Field name not in file
B094 Invalid record format</pre>
</div>
<p><b>More Error messages</b></p>
<p></p>
<p><a href="http://xmlgadgets.com/easytrieve-error/A001.html">A001</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A002.html">A002</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A003.html">A003</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A004.html">A004</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A005.html">A005</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A006.html">A006</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A007.html">A007</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A008.html">A008</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A009.html">A009</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A010.html">A010</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A011.html">A011</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A012.html">A012</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A013.html">A013</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A014.html">A014</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A015.html">A015</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A016.html">A016</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A017.html">A017</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A018.html">A018</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A019.html">A019</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A020.html">A020</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A021.html">A021</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A022.html">A022</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A023.html">A023</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A024.html">A024</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A025.html">A025</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A026.html">A026</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A027.html">A027</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A028.html">A028</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A029.html">A029</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A030.html">A030</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A031.html">A031</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A032.html">A032</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A033.html">A033</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A034.html">A034</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A035.html">A035</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A036.html">A036</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A037.html">A037</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A038.html">A038</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A039.html">A039</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A041.html">A041</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A043.html">A043</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A044.html">A044</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A045.html">A045</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/A046.html">A046</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B001.html">B001</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B002.html">B002</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B003.html">B003</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B004.html">B004</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B005.html">B005</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B006.html">B006</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B007.html">B007</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B008.html">B008</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B009.html">B009</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B010.html">B010</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B011.html">B011</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B012.html">B012</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B013.html">B013</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B014.html">B014</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B015.html">B015</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B016.html">B016</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B017.html">B017</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B018.html">B018</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B019.html">B019</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B020.html">B020</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B021.html">B021</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B022.html">B022</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B023.html">B023</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B024.html">B024</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B025.html">B025</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B026.html">B026</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B027.html">B027</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B028.html">B028</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B029.html">B029</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B030.html">B030</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B031.html">B031</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B032.html">B032</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B033.html">B033</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B034.html">B034</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B035.html">B035</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B036.html">B036</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B037.html">B037</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B038.html">B038</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B039.html">B039</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B040.html">B040</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B041.html">B041</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B042.html">B042</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B043.html">B043</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B044.html">B044</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B045.html">B045</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B046.html">B046</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B047.html">B047</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B048.html">B048</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B049.html">B049</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B050.html">B050</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B051.html">B051</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B052.html">B052</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B053.html">B053</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B054.html">B054</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B055.html">B055</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B056.html">B056</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B057.html">B057</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B058.html">B058</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B059.html">B059</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B060.html">B060</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B061.html">B061</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B062.html">B062</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B063.html">B063</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B064.html">B064</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B065.html">B065</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B066.html">B066</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B067.html">B067</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B068.html">B068</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B069.html">B069</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B070.html">B070</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B071.html">B071</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B072.html">B072</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B073.html">B073</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B074.html">B074</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B075.html">B075</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B076.html">B076</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B077.html">B077</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B078.html">B078</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B079.html">B079</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B080.html">B080</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B081.html">B081</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B082.html">B082</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B083.html">B083</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B084.html">B084</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B085.html">B085</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B086.html">B086</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B087.html">B087</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B088.html">B088</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B089.html">B089</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B090.html">B090</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B091.html">B091</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B092.html">B092</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B093.html">B093</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B094.html">B094</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B095.html">B095</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B096.html">B096</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B097.html">B097</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B098.html">B098</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B099.html">B099</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B100.html">B100</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B101.html">B101</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B102.html">B102</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B103.html">B103</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B104.html">B104</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B105.html">B105</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B106.html">B106</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B107.html">B107</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B108.html">B108</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B109.html">B109</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B110.html">B110</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B111.html">B111</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B112.html">B112</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B113.html">B113</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B114.html">B114</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B115.html">B115</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B116.html">B116</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B117.html">B117</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B118.html">B118</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B119.html">B119</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B120.html">B120</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B121.html">B121</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B122.html">B122</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B123.html">B123</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B124.html">B124</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B125.html">B125</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B126.html">B126</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B127.html">B127</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B128.html">B128</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B129.html">B129</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B130.html">B130</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B131.html">B131</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B132.html">B132</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B133.html">B133</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B134.html">B134</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B135.html">B135</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B136.html">B136</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B137.html">B137</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B138.html">B138</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B139.html">B139</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B140.html">B140</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B141.html">B141</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B142.html">B142</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B143.html">B143</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B144.html">B144</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B145.html">B145</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B146.html">B146</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B147.html">B147</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B148.html">B148</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B149.html">B149</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B150.html">B150</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B151.html">B151</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B152.html">B152</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B153.html">B153</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B154.html">B154</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B155.html">B155</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B156.html">B156</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B157.html">B157</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B158.html">B158</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B159.html">B159</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B160.html">B160</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B161.html">B161</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B162.html">B162</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B163.html">B163</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B164.html">B164</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B165.html">B165</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B166.html">B166</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B167.html">B167</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B168.html">B168</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B169.html">B169</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B170.html">B170</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B171.html">B171</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B172.html">B172</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B173.html">B173</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B174.html">B174</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B175.html">B175</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B176.html">B176</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B177.html">B177</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B178.html">B178</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B179.html">B179</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B180.html">B180</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B181.html">B181</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B182.html">B182</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B183.html">B183</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B184.html">B184</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B185.html">B185</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B186.html">B186</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B187.html">B187</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B188.html">B188</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B189.html">B189</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B190.html">B190</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B191.html">B191</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B192.html">B192</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B196.html">B196</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B197.html">B197</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B198.html">B198</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B199.html">B199</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B200.html">B200</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B201.html">B201</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B202.html">B202</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B203.html">B203</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B204.html">B204</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B205.html">B205</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B206.html">B206</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B207.html">B207</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B208.html">B208</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B209.html">B209</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B210.html">B210</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B211.html">B211</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B212.html">B212</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B213.html">B213</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B214.html">B214</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B215.html">B215</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B216.html">B216</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B217.html">B217</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B218.html">B218</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B219.html">B219</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B220.html">B220</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B221.html">B221</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B222.html">B222</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B223.html">B223</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B224.html">B224</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B225.html">B225</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B226.html">B226</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B227.html">B227</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B228.html">B228</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B229.html">B229</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B230.html">B230</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B231.html">B231</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B232.html">B232</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B233.html">B233</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B254.html">B254</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B255.html">B255</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B256.html">B256</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B257.html">B257</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B258.html">B258</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B259.html">B259</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B260.html">B260</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B261.html">B261</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B262.html">B262</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B263.html">B263</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B264.html">B264</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B265.html">B265</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B266.html">B266</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B267.html">B267</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B268.html">B268</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B269.html">B269</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B270.html">B270</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B290.html">B290</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B291.html">B291</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B297.html">B297</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B298.html">B298</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B299.html">B299</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B300.html">B300</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B301.html">B301</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B302.html">B302</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B303.html">B303</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B304.html">B304</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B305.html">B305</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B306.html">B306</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B307.html">B307</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B308.html">B308</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B309.html">B309</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B310.html">B310</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B311.html">B311</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B312.html">B312</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/B313.html">B313</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/CBL777.html">CBL777</a>&nbsp; <a href="http://xmlgadgets.com/easytrieve-error/CBL787.html">CBL787</a>&nbsp; </p>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/hzN-CqgiSdg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/03/14/easytrieve-error-messages-a0-and-b0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/03/14/easytrieve-error-messages-a0-and-b0/</feedburner:origLink></item>
		<item>
		<title>SYSDATE and SYSTIME in Easytrieve</title>
		<link>http://feedproxy.google.com/~r/usethiscode/~3/QJg_VRFSSwU/</link>
		<comments>http://code.xmlgadgets.com/2012/03/13/sysdate-and-systime-in-easytrieve/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 15:29:41 +0000</pubDate>
		<dc:creator>Karthik</dc:creator>
				<category><![CDATA[Easytrieve]]></category>

		<guid isPermaLink="false">http://code.xmlgadgets.com/?p=326</guid>
		<description><![CDATA[SYSDATE and SYSTEM are keywords in Easytrieve that will return Current System date and System time respectively. LIST ON JOB INPUT NULL DISPLAY SYSDATE DISPLAY SYSTIME STOP * Output will be 07/02/12 04.40.47]]></description>
			<content:encoded><![CDATA[<p>SYSDATE and SYSTEM are keywords in Easytrieve that will return Current System date and System time respectively.</p>
<div style="background-color: #f8f8f8">
<pre class="prettyprint"> LIST ON
 JOB INPUT NULL
   DISPLAY SYSDATE
   DISPLAY SYSTIME
 STOP
*</pre>
</div>
<p>Output will be </p>
<div style="background-color: black; color: lime">
<pre style="padding-bottom: 10px; padding-left: 10px; padding-right: 10px; padding-top: 10px">07/02/12
04.40.47</pre>
</div>
<img src="http://feeds.feedburner.com/~r/usethiscode/~4/QJg_VRFSSwU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://code.xmlgadgets.com/2012/03/13/sysdate-and-systime-in-easytrieve/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://code.xmlgadgets.com/2012/03/13/sysdate-and-systime-in-easytrieve/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.645 seconds -->

