<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:annotate="http://purl.org/rss/1.0/modules/annotate/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!--
	This feed generated for Anonymous
	More info at http://naklon.info/rss/about.htm
-->
<channel>
<title>IBMMAINFRAMES.com - IBM Mainframe Support Forums</title>
<link>http://ibmmainframes.com/</link>
<description>Mainframe Application Programming Development Solutions</description>
<managingEditor>dontreply@ibmmainframes.com</managingEditor>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>RSS Feed 2.2.4</generator>
<language>en</language>
<lastBuildDate>Fri, 19 Mar 2010 03:15:38 GMT</lastBuildDate>
<image>
	<url>http://ibmmainframes.com/thl217.jpg</url>
	<title>IBMMAINFRAMES.com - IBM Mainframe Support Forums</title>
	<link>http://ibmmainframes.com/</link>
	<width>122</width>
	<height>56</height>
</image>
<item>
<title>CICS :: can Rexx run in TSO issue CICS command?</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228776#228776</link>
<pubDate>Fri, 19 Mar 2010 03:03:54 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228776#228776</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=7183&quot; target=&quot;_blank&quot;&gt;fungyufa&lt;/a&gt;&lt;br /&gt;
Subject: can Rexx run in TSO issue CICS command?&lt;br /&gt;
Posted: Fri Mar 19, 2010 8:33 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
does it possible to do so?
&lt;br /&gt;
for example, I want to close specific online dataset in 20 different cics region by running a rexx, instead of logon 20 times. &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_biggrin.gif&quot; alt=&quot;icon_biggrin.gif&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;_________________&lt;br /&gt;fa....&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>fungyufa</dc:creator>
<dc:subject>CICS</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228776#228776" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228776</comments>
</item>
<item>
<title>DB2 :: DB2 SQL doubt - Sorting by non group by field</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228775#228775</link>
<pubDate>Fri, 19 Mar 2010 02:59:47 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228775#228775</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=40959&quot; target=&quot;_blank&quot;&gt;himanshupant&lt;/a&gt;&lt;br /&gt;
Subject: DB2 SQL doubt - Sorting by non group by field&lt;br /&gt;
Posted: Fri Mar 19, 2010 8:29 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi
&lt;br /&gt;

&lt;br /&gt;
Below is the DCLGEN of a table :-
&lt;br /&gt;

&lt;br /&gt;
PAR                        SMALLINT NOT NULL,      
&lt;br /&gt;
BR                          INTEGER NOT NULL,       
&lt;br /&gt;
ACC                        INTEGER NOT NULL,       
&lt;br /&gt;
RUN_DATE               DATE NOT NULL,          
&lt;br /&gt;
A_U_IND                 CHAR(1) NOT NULL,       
&lt;br /&gt;
DRATE                    CHAR(4) NOT NULL,       
&lt;br /&gt;
START_DA              DATE NOT NULL,          
&lt;br /&gt;
ITYPE                     CHAR(1) NOT NULL,       
&lt;br /&gt;
BLIMIT                   DECIMAL(13, 2) NOT NULL,
&lt;br /&gt;
THOLD                   DECIMAL(15, 0) NOT NULL,
&lt;br /&gt;
AIT                        DECIMAL(15, 0) NOT NULL 
&lt;br /&gt;

&lt;br /&gt;
In the above table the keys are the column 1 - 6 ( i.e. from PAR till DRATE both inclusive). 
&lt;br /&gt;

&lt;br /&gt;
Below is a query to return some rows from the table
&lt;br /&gt;

&lt;br /&gt;
    SELECT                                              
&lt;br /&gt;
               A_U_IND                          
&lt;br /&gt;
               , MIN(RUN_DATE)                             
&lt;br /&gt;
               , DRATE                                  
&lt;br /&gt;
               , THOLD                          
&lt;br /&gt;
         FROM                                                
&lt;br /&gt;
               TABLE1                            
&lt;br /&gt;
         WHERE                                               
&lt;br /&gt;
             PAR = :TABLE1.PAR
&lt;br /&gt;
   AND       BR = :TABLE1.BR 
&lt;br /&gt;
   AND       ACC = :TABLE1.ACC                
&lt;br /&gt;
   AND       RUN_DATE BETWEEN :WS-START-DATE AND :WS-END-DATE
&lt;br /&gt;
   AND       ITYPE IN ('A' 'B' 'T')           
&lt;br /&gt;
   GROUP BY A_U_IND,DRATE,THOLD             
&lt;br /&gt;
     ORDER BY THOLD ASC       
&lt;br /&gt;

&lt;br /&gt;
In the above query I want to keep everything unchanged but just ensure that the results come in the sorted ascending order of RUN_DATE as well ( in addition to THOLD) . I am trying to put in ORDER by RUN_DATE as well but I am getting a SQL code of -122 . Is there any way this query can be redisgned to provide the same result set with the additional condition of being sorted by RUN_DATE as well.
&lt;br /&gt;

&lt;br /&gt;
Any help would be greatly appreciated.            
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
2) Can any one tell me what is the SORT criterial in the above query? I see a trend of the result set being sorted on the basisi of A_U_IND ( when the THOLD are same). Is DB2 engine doing some other sort criteria on its own ? Can we play around with that SORT criteria to get our desired criteria of SORT on basis of RUN_DATE.?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>himanshupant</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228775#228775" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228775</comments>
</item>
<item>
<title>JCL :: help in sort</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228774#228774</link>
<pubDate>Fri, 19 Mar 2010 02:52:07 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228774#228774</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=83695&quot; target=&quot;_blank&quot;&gt;NobinBehanan&lt;/a&gt;&lt;br /&gt;
Subject: help in sort&lt;br /&gt;
Posted: Fri Mar 19, 2010 8:22 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I want to replace a value in a file for one particular record. 
&lt;br /&gt;
The requirement is: 
&lt;br /&gt;
File has length of 355 and the field want to replace is at position 72, length= 5 , packed decimal 
&lt;br /&gt;

&lt;br /&gt;
if the field at position 2,length=4 is of value 'XXXX', the field at 72 has to be replaced with a date 'CCYYMMDD' 
&lt;br /&gt;
Please help me in this&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>NobinBehanan</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228774#228774" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228774</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: Number of duplicates for alternate key</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228773#228773</link>
<pubDate>Fri, 19 Mar 2010 02:50:28 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228773#228773</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=83695&quot; target=&quot;_blank&quot;&gt;NobinBehanan&lt;/a&gt;&lt;br /&gt;
Subject: Help in assigning numeric value&lt;br /&gt;
Posted: Fri Mar 19, 2010 8:20 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I want to replace a value in a file for one particular record. 
&lt;br /&gt;
The requirement is:
&lt;br /&gt;
File has length of 355 and the field want to replace is at position 72, length= 5 , packed decimal
&lt;br /&gt;

&lt;br /&gt;
if the field at position 2,length=4 is  of value 'XXXX', the field at 72 has to be replaced with a date 'CCYYMMDD'
&lt;br /&gt;
Please help me in this&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>NobinBehanan</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=227141#227141" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228773</comments>
</item>
<item>
<title>JCL :: RE: Parsing %%variables from a member</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228772#228772</link>
<pubDate>Fri, 19 Mar 2010 02:36:53 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228772#228772</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=26701&quot; target=&quot;_blank&quot;&gt;gcicchet&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 8:06 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
the member should be set up in this manner&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;%%SET %%HOBBIES=IT%%BLANK%%.programming
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Gerry&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>gcicchet</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228609#228609" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228772</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: Need to move SORT statements from main procedure to subrouti</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228771#228771</link>
<pubDate>Fri, 19 Mar 2010 00:00:03 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228771#228771</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=64306&quot; target=&quot;_blank&quot;&gt;Robert Sample&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 5:30 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
You cannot use WRITE to an SD. 
&lt;br /&gt;

&lt;br /&gt;
Although you are using COBOL, these questions are more SORT oriented.  Which SORT package are you using so we can move this topic to the appropriate forum?&lt;br /&gt;_________________&lt;br /&gt;TANSTAAFL
&lt;br /&gt;

&lt;br /&gt;
&quot;We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil.&quot; -- Donald Knuth&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Robert Sample</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228767#228767" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228771</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: Monitoring table (Array) growth in COBOL program</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228770#228770</link>
<pubDate>Thu, 18 Mar 2010 23:11:44 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228770#228770</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=69901&quot; target=&quot;_blank&quot;&gt;smaru&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: Monitoring table (Array) growth in COBOL program&lt;br /&gt;
Posted: Fri Mar 19, 2010 4:41 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Bill, 
&lt;br /&gt;
Thanks a lot for the reply. Although I'm not familier with the options you specified, I will learn, try to implement and post my queries.&lt;br /&gt;_________________&lt;br /&gt;Srikanth&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>smaru</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228763#228763" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228770</comments>
</item>
<item>
<title>TSO/ISPF :: RE: ISPF FILEXFER Problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228769#228769</link>
<pubDate>Thu, 18 Mar 2010 22:31:49 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228769#228769</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=66750&quot; target=&quot;_blank&quot;&gt;MBabu&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 4:01 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
FILEXFER does not use FTP.  It uses an ISPF specific client that can be installed on the workstation to talk only to ISPF (usually downloaded from ISP.SISPGUI or similar, member ISPGUINX for the Windows version).  That client can be set up to accept connections only from a specific host and user id.   As with all situations, be sure to check with your security group before installing servers on your workstation.  As usual, Gilbert has a good write up: &lt;a href=&quot;http://gsf-soft.com/Documents/ISPF-CS.shtml&quot; target=&quot;_blank&quot;&gt;http://gsf-soft.com/Documents/ISPF-CS.shtml&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>MBabu</dc:creator>
<dc:subject>TSO/ISPF</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228645#228645" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228769</comments>
</item>
<item>
<title>JCL :: RE: NEW,CATLG,DELETE run for the first time and then rerun</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228768#228768</link>
<pubDate>Thu, 18 Mar 2010 22:20:31 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228768#228768</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=66750&quot; target=&quot;_blank&quot;&gt;MBabu&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 3:50 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Just a matter of symantics.  Say... 000-FFF and we'll all be happy &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_smile.gif&quot; alt=&quot;icon_smile.gif&quot; border=&quot;0&quot; /&gt;  For what it is worth, the reason that hex is useful is that system abends XYY usually (well, at least often) mean that YY was an SVC number, eg 806 is a problem with SVC x'06' (LOAD, if I recall).  Using decimal hides that fact so that is why no one does it.  I suspect that the only time you'd ever see a system abend listed as decimal is when a programmer who traps it is too lazy to do the conversion in a message.  User abends are often in decimal (like LE user abends) because, by definition,  there are no established standards for the meanings of user abends.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>MBabu</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228619#228619" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228768</comments>
</item>
<item>
<title>Mainframe COBOL :: Need to move SORT statements from main procedure to subrouti</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228767#228767</link>
<pubDate>Thu, 18 Mar 2010 22:16:13 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228767#228767</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=84059&quot; target=&quot;_blank&quot;&gt;John G Carter&lt;/a&gt;&lt;br /&gt;
Subject: Need to move SORT statements from main procedure to subrouti&lt;br /&gt;
Posted: Fri Mar 19, 2010 3:46 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I need to move SORT statements from the main procedure of my code into one or more separate subroutines.  I also need to remove the use of RETURN and RELEASE statements from the main procedure as well.  How do I go about doing this?  Should I create temporary files that contain the data that would have been RELEASED to the sort work file?  Can I pass an SD in the linkage section?  Can I write to an SD just as I would to an FD?  If so, I wouldn't need a USING clause, would I?  Even better, would it be possible to create a generic SORT subroutine that I could use to replace all of my specific SORT statements?
&lt;br /&gt;

&lt;br /&gt;
The SORT statements I'm currently working with are of the variety of SORT ... INPUT / OUTPUT PROCEDURE ...
&lt;br /&gt;

&lt;br /&gt;
The platform is IBM z/OS COBOL 3.2.
&lt;br /&gt;

&lt;br /&gt;
Thanx for any help that anyone can provide.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>John G Carter</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228767#228767" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228767</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: Monitoring table (Array) growth in COBOL program</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228766#228766</link>
<pubDate>Thu, 18 Mar 2010 21:24:43 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228766#228766</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=57338&quot; target=&quot;_blank&quot;&gt;Bill O'Boyle&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: Monitoring table (Array) growth in COBOL program&lt;br /&gt;
Posted: Fri Mar 19, 2010 2:54 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Are you populating the array from a Flat-File or a VSAM-File? I've erroneously suggested in the past that a REXX LISTDSI command would return the number of records on a Flat-File, but that's incorrect.  &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_redface.gif&quot; alt=&quot;icon_redface.gif&quot; border=&quot;0&quot; /&gt; 
&lt;br /&gt;

&lt;br /&gt;
As far as VSAM, you can obtain the number of records associated with a given file via a SHOWCB Macro in a small Assembler sub-program, called from COBOL.
&lt;br /&gt;

&lt;br /&gt;
If you do have a Flat-File, you can REPRO it into a temporary (predefined) EDS file and then use the sub-program which invokes the SHOWCB to obtain the number of records.
&lt;br /&gt;

&lt;br /&gt;
Once you know the number of records and LRECL of each, you could acquire the correct amount of dynamic-storage, via the LE Callable Service routine &quot;CEEGTST&quot;.
&lt;br /&gt;

&lt;br /&gt;
With that, your array definition can be placed in LINKAGE, with a true OCCURS DEPENDING ON maximum.
&lt;br /&gt;

&lt;br /&gt;
Using this approach, array-spillover will become almost non-existent.
&lt;br /&gt;

&lt;br /&gt;
If you can wait until the program (job/step) has completed, the dynamic-storage will be implicitly freed by the operating system. 
&lt;br /&gt;

&lt;br /&gt;
Otherwise, you can explicitly free this storage via the LE Callable Service routine &quot;CEEFRST&quot;.
&lt;br /&gt;

&lt;br /&gt;
Bill&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Bill O'Boyle</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228763#228763" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228766</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: Monitoring table (Array) growth in COBOL program</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228765#228765</link>
<pubDate>Thu, 18 Mar 2010 21:15:24 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228765#228765</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=34671&quot; target=&quot;_blank&quot;&gt;dick scherrer&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 2:45 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;from the log&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;What are you calling &quot;the log&quot;?
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;I can change my programs to display the index value and monitor the growth but I would want to check if the same can be captured by any other options.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;Sure, implement code to keep track of usage and at the end of each run put this info in a database table or vsam file. . .&lt;br /&gt;_________________&lt;br /&gt;Hope this helps,
&lt;br /&gt;

&lt;br /&gt;
d.sch.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dick scherrer</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228763#228763" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228765</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: RE: Modifying MODS routine names</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228764#228764</link>
<pubDate>Thu, 18 Mar 2010 21:11:11 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228764#228764</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=2542&quot; target=&quot;_blank&quot;&gt;Frank Yaeger&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 2:41 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
You're welcome.  That was fun!   &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_wink.gif&quot; alt=&quot;icon_wink.gif&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;_________________&lt;br /&gt;Frank Yaeger - DFSORT Development Team  (IBM) - &lt;a href=&quot;mailto:yaeger@us.ibm.com&quot;&gt;yaeger@us.ibm.com&lt;/a&gt;             
&lt;br /&gt;
Specialties: JOINKEYS, FINDREP, WHEN=GROUP,  ICETOOL, Symbols, Migration         
&lt;br /&gt;
=&gt; DFSORT/MVS is on the Web at &lt;a href=&quot;http://www.ibm.com/storage/dfsort/&quot; target=&quot;_blank&quot;&gt;http://www.ibm.com/storage/dfsort/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Frank Yaeger</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228730#228730" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228764</comments>
</item>
<item>
<title>Mainframe COBOL :: Monitoring table (Array) growth in COBOL program</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228763#228763</link>
<pubDate>Thu, 18 Mar 2010 21:09:39 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228763#228763</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=69901&quot; target=&quot;_blank&quot;&gt;smaru&lt;/a&gt;&lt;br /&gt;
Subject: Monitoring table (Array) growth in COBOL program&lt;br /&gt;
Posted: Fri Mar 19, 2010 2:39 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Many of my programs are facing overflow issues in table i.e. exceeding the specified array limit. Is there a way to identify the number of trasactions loaded in an array in a particular execution of the program from the log. So that I can monitor the size and increase it, before they actually fail.
&lt;br /&gt;

&lt;br /&gt;
I can change my programs to display the index value and monitor the growth but  I would want to check if the same can be captured by any other options.&lt;br /&gt;_________________&lt;br /&gt;Srikanth&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>smaru</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228763#228763" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228763</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: RE: Modifying MODS routine names</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228762#228762</link>
<pubDate>Thu, 18 Mar 2010 20:51:57 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228762#228762</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=54465&quot; target=&quot;_blank&quot;&gt;David Eisenberg&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: Modifying MODS routine names&lt;br /&gt;
Posted: Fri Mar 19, 2010 2:21 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Frank,
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Fantastic!&lt;/span&gt; Thank you!
&lt;br /&gt;

&lt;br /&gt;
David&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>David Eisenberg</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228730#228730" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228762</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: RE: Modifying MODS routine names</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228761#228761</link>
<pubDate>Thu, 18 Mar 2010 20:42:21 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228761#228761</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=2542&quot; target=&quot;_blank&quot;&gt;Frank Yaeger&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 2:12 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
And here's a more general version that will work with MODS statements in the form:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
&amp;nbsp;MODS Exx=&amp;#40;x,a&amp;#41; 
&lt;br /&gt;
&amp;nbsp;MODS Exx=&amp;#40;x,a&amp;#41;,Exx=&amp;#40;y,b&amp;#41; 
&lt;br /&gt;
&amp;nbsp;MODS Exx=&amp;#40;x,a&amp;#41;,Exx=&amp;#40;y,b&amp;#41;,Exx=&amp;#40;z,c&amp;#41; 
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
where x, y and z can be 1-7 character exit names and a, b and c can be 1-5 digit values.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
&amp;nbsp; OPTION COPY
&lt;br /&gt;
&amp;nbsp; INREC IFTHEN=&amp;#40;WHEN=&amp;#40;1,6,CH,EQ,C' MODS'&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PARSE=&amp;#40;%01=&amp;#40;ABSPOS=7,FIXLEN=3&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%02=&amp;#40;STARTAFT=C'&amp;#40;',ENDBEFR=C',',FIXLEN=7&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%03=&amp;#40;ENDBEFR=C'&amp;#41;',FIXLEN=5&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%04=&amp;#40;STARTAFT=C',',FIXLEN=3&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%05=&amp;#40;STARTAFT=C'&amp;#40;',ENDBEFR=C',',FIXLEN=7&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%06=&amp;#40;ENDBEFR=C'&amp;#41;',FIXLEN=5&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%07=&amp;#40;STARTAFT=C',',FIXLEN=3&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%08=&amp;#40;STARTAFT=C'&amp;#40;',ENDBEFR=C',',FIXLEN=7&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%09=&amp;#40;ENDBEFR=C'&amp;#41;',FIXLEN=5&amp;#41;&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;BUILD=&amp;#40;C' MODS ',
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %01,C'=&amp;#40;',%02,C'A,',%03,C'&amp;#41;,',
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %04,C'=&amp;#40;',%05,C'A,',%06,C'&amp;#41;,',
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %07,C'=&amp;#40;',%08,C'A,',%09,C'&amp;#41;'&amp;#41;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;OUTFIL IFOUTLEN=80,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; IFTHEN=&amp;#40;WHEN=&amp;#40;28,1,CH,EQ,C' '&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; BUILD=&amp;#40;1,6,7,20,SQZ=&amp;#40;SHIFT=LEFT&amp;#41;&amp;#41;&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; IFTHEN=&amp;#40;WHEN=&amp;#40;49,1,CH,EQ,C' '&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; BUILD=&amp;#40;1,6,7,41,SQZ=&amp;#40;SHIFT=LEFT&amp;#41;&amp;#41;&amp;#41;,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; IFTHEN=&amp;#40;WHEN=NONE,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; BUILD=&amp;#40;1,6,7,63,SQZ=&amp;#40;SHIFT=LEFT&amp;#41;&amp;#41;&amp;#41;
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
So for example, if your input was: 
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
* example&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;SORT FIELDS=COPY&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;MODS E15=&amp;#40;DF,750&amp;#41;,E35=&amp;#40;DF5XIT1,5000&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;OUTFIL &amp;lt;etc&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
* some other stuff&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;SORT FIELDS=&amp;#40;7,15,A&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;INCLUDE ...&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;MODS E35=&amp;#40;E35XT,900&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
* more stuff&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;MODS E35=&amp;#40;DF51,8100&amp;#41;,E35=&amp;#40;DF5XIT,800&amp;#41;,E11=&amp;#40;XY,82000&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
the output would be:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
* example&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;SORT FIELDS=COPY&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;MODS E15=&amp;#40;DFA,750&amp;#41;,E35=&amp;#40;DF5XIT1A,5000&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;OUTFIL&amp;lt;etc&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
* someotherstuff&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;SORT FIELDS=&amp;#40;7,15,A&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;INCLUDE...&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;MODS E35=&amp;#40;E35XTA,900&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
* morestuff&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;MODS E35=&amp;#40;DF51A,8100&amp;#41;,E35=&amp;#40;DF5XITA,800&amp;#41;,E11=&amp;#40;XYA,82000&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;_________________&lt;br /&gt;Frank Yaeger - DFSORT Development Team  (IBM) - &lt;a href=&quot;mailto:yaeger@us.ibm.com&quot;&gt;yaeger@us.ibm.com&lt;/a&gt;             
&lt;br /&gt;
Specialties: JOINKEYS, FINDREP, WHEN=GROUP,  ICETOOL, Symbols, Migration         
&lt;br /&gt;
=&gt; DFSORT/MVS is on the Web at &lt;a href=&quot;http://www.ibm.com/storage/dfsort/&quot; target=&quot;_blank&quot;&gt;http://www.ibm.com/storage/dfsort/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Frank Yaeger</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228730#228730" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228761</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: RE: Modifying MODS routine names</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228760#228760</link>
<pubDate>Thu, 18 Mar 2010 20:19:25 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228760#228760</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=2542&quot; target=&quot;_blank&quot;&gt;Frank Yaeger&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 1:49 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
If you just ensured that each name was 7 characters and the form of the MODS statement was always one of these:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
&amp;nbsp;MODS Exx=&amp;#40;exitnam,a&amp;#41;
&lt;br /&gt;
&amp;nbsp;MODS Exx=&amp;#40;exitnam,a&amp;#41;,Exx=&amp;#40;exitnam,b&amp;#41;
&lt;br /&gt;
&amp;nbsp;MODS Exx=&amp;#40;exitnam,a&amp;#41;,Exx=&amp;#40;exitnam,b&amp;#41;,Exx=&amp;#40;exitname,c&amp;#41;
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
where a, b and c are 1-5 digit values, you could use the following DFSORT control statements to do what you want:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
&amp;nbsp; OPTION COPY&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; INREC IFTHEN=&amp;#40;WHEN=&amp;#40;1,6,CH,EQ,C' MODS'&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PARSE=&amp;#40;%01=&amp;#40;ABSPOS=7,FIXLEN=3&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %02=&amp;#40;STARTAFT=C'&amp;#40;',FIXLEN=7&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %03=&amp;#40;STARTAFT=C',',ENDBEFR=C'&amp;#41;',FIXLEN=5&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %04=&amp;#40;STARTAFT=C',',FIXLEN=3&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %05=&amp;#40;STARTAFT=C'&amp;#40;',FIXLEN=7&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %06=&amp;#40;STARTAFT=C',',ENDBEFR=C'&amp;#41;',FIXLEN=5&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %07=&amp;#40;STARTAFT=C',',FIXLEN=3&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %08=&amp;#40;STARTAFT=C'&amp;#40;',FIXLEN=7&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %09=&amp;#40;STARTAFT=C',',ENDBEFR=C'&amp;#41;',FIXLEN=5&amp;#41;&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BUILD=&amp;#40;C' MODS ',&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%01,C'=&amp;#40;',%02,C'A,',%03,UFF,EDIT=&amp;#40;TTTTT&amp;#41;,C'&amp;#41;,',&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%04,C'=&amp;#40;',%05,C'A,',%06,UFF,EDIT=&amp;#40;TTTTT&amp;#41;,C'&amp;#41;,',&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;%07,C'=&amp;#40;',%08,C'A,',%09,UFF,EDIT=&amp;#40;TTTTT&amp;#41;,C'&amp;#41;'&amp;#41;&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; OUTFIL IFOUTLEN=80,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;IFTHEN=&amp;#40;WHEN=&amp;#40;28,1,CH,EQ,C' '&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;BUILD=&amp;#40;1,26&amp;#41;&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;IFTHEN=&amp;#40;WHEN=&amp;#40;49,1,CH,EQ,C' '&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;BUILD=&amp;#40;1,47&amp;#41;&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
So for example, if your input was:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
* example&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;SORT FIELDS=COPY&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;MODS E15=&amp;#40;DF5XIT1,750&amp;#41;,E35=&amp;#40;DF5XIT1,5000&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;OUTFIL &amp;lt;etc&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
* some other stuff&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;SORT FIELDS=&amp;#40;7,15,A&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;INCLUDE ...&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;MODS E35=&amp;#40;E35XT02,900&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
* more stuff&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;MODS E35=&amp;#40;DF5XIT1,81000&amp;#41;,E35=&amp;#40;DF5XIT2,5000&amp;#41;,E11=&amp;#40;XYZABCD,82000&amp;#41;&amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
the output would be:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
* example&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;SORT FIELDS=COPY&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;MODS E15=&amp;#40;DF5XIT1A,00750&amp;#41;,E35=&amp;#40;DF5XIT1A,05000&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;OUTFIL &amp;lt;etc&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
* some other stuff&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;SORT FIELDS=&amp;#40;7,15,A&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp;INCLUDE ...&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;MODS E35=&amp;#40;E35XT02A,00900&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
* more stuff&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp;MODS E35=&amp;#40;DF5XIT1A,81000&amp;#41;,E35=&amp;#40;DF5XIT2A,05000&amp;#41;,E11=&amp;#40;XYZABCDA,82000&amp;#41; 
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;_________________&lt;br /&gt;Frank Yaeger - DFSORT Development Team  (IBM) - &lt;a href=&quot;mailto:yaeger@us.ibm.com&quot;&gt;yaeger@us.ibm.com&lt;/a&gt;             
&lt;br /&gt;
Specialties: JOINKEYS, FINDREP, WHEN=GROUP,  ICETOOL, Symbols, Migration         
&lt;br /&gt;
=&gt; DFSORT/MVS is on the Web at &lt;a href=&quot;http://www.ibm.com/storage/dfsort/&quot; target=&quot;_blank&quot;&gt;http://www.ibm.com/storage/dfsort/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Frank Yaeger</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228730#228730" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228760</comments>
</item>
<item>
<title>DB2 :: RE: Determine Unique Index column name</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228759#228759</link>
<pubDate>Thu, 18 Mar 2010 20:17:18 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228759#228759</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=34671&quot; target=&quot;_blank&quot;&gt;dick scherrer&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: Determine Unique Index column name&lt;br /&gt;
Posted: Fri Mar 19, 2010 1:47 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
It is surely less dangerous. . .
&lt;br /&gt;

&lt;br /&gt;
Oooopps - i thought it was dead. . .&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dick scherrer</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228580#228580" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228759</comments>
</item>
<item>
<title>DB2 :: RE: DB2 DBA Next Level</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228758#228758</link>
<pubDate>Thu, 18 Mar 2010 20:16:17 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228758#228758</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=34671&quot; target=&quot;_blank&quot;&gt;dick scherrer&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 1:46 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
None of the DB2 &quot;System Expert&quot;s i know have any certification. . .
&lt;br /&gt;

&lt;br /&gt;
They do have lots and lots of experience.&lt;br /&gt;_________________&lt;br /&gt;Hope this helps,
&lt;br /&gt;

&lt;br /&gt;
d.sch.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dick scherrer</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228753#228753" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228758</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: File comparison in cobol</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228757#228757</link>
<pubDate>Thu, 18 Mar 2010 20:12:43 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228757#228757</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=34671&quot; target=&quot;_blank&quot;&gt;dick scherrer&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 1:42 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
I suspect it is for many-to-many. . . Instead of 1:N or N:1, &lt;span style=&quot;font-style: italic&quot;&gt;ta daa&lt;/span&gt; N:N. . .&lt;br /&gt;_________________&lt;br /&gt;Hope this helps,
&lt;br /&gt;

&lt;br /&gt;
d.sch.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dick scherrer</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228655#228655" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228757</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: File comparison in cobol</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228756#228756</link>
<pubDate>Thu, 18 Mar 2010 20:11:17 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228756#228756</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=40616&quot; target=&quot;_blank&quot;&gt;enrico-sorichetti&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: File comparison in cobol&lt;br /&gt;
Posted: Fri Mar 19, 2010 1:41 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I guess a typo for M:N logic&lt;br /&gt;_________________&lt;br /&gt;Regards
&lt;br /&gt;
enrico sorichetti
&lt;br /&gt;
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
&lt;br /&gt;
so that I am sure that the information requested can be reached with a very small effort :-)&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>enrico-sorichetti</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228655#228655" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228756</comments>
</item>
<item>
<title>DB2 :: RE: Determine Unique Index column name</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228755#228755</link>
<pubDate>Thu, 18 Mar 2010 19:58:50 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228755#228755</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=65865&quot; target=&quot;_blank&quot;&gt;Terry Heinze&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 1:28 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I &lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;&lt;span style=&quot;text-decoration: underline&quot;&gt;love&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; killing dead snakes.  &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_lol.gif&quot; alt=&quot;icon_lol.gif&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;color: blue&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;....  Terry&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Terry Heinze</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228580#228580" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228755</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: COBOl value clause for decimal- causing problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228754#228754</link>
<pubDate>Thu, 18 Mar 2010 19:51:23 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228754#228754</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=44173&quot; target=&quot;_blank&quot;&gt;Craq Giegerich&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 1:21 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;I can create the same error by adding 
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;SPECIAL-NAMES.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;DECIMAL-POINT IS COMMA.&amp;nbsp; 
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt; to the configuration section.&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;nbsp; &amp;nbsp; 05 TEST7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PIC V999 VALUE 0.5.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
A blank was missing before character &amp;quot;5&amp;quot; in column 44.&amp;nbsp; A blank was&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
assumed.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
A &amp;quot;PICTURE&amp;quot; clause was not found for elementary item &amp;quot;FILLER&amp;quot;.&amp;nbsp; &amp;quot;PICTURE 
&lt;br /&gt;
X&amp;#40;1&amp;#41;&amp;quot; was assumed.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
but this works fine
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;05 TEST7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PIC V999 VALUE 0,5.
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Craq Giegerich</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228497#228497" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228754</comments>
</item>
<item>
<title>DB2 :: DB2 DBA Next Level</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228753#228753</link>
<pubDate>Thu, 18 Mar 2010 19:51:10 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228753#228753</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=8755&quot; target=&quot;_blank&quot;&gt;boo_sri&lt;/a&gt;&lt;br /&gt;
Subject: DB2 DBA Next Level&lt;br /&gt;
Posted: Fri Mar 19, 2010 1:21 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I've completed my DBA certification (Exam 702) last year. I'd like to know the best available option or next steps after the 702 exam. I would like pursue my career as DB2 solution expert and I want to know the best available path to reach there.
&lt;br /&gt;

&lt;br /&gt;
700--&amp;gt; 702 ---&amp;gt; ? &amp;lt; Next Steps&amp;gt;  = System Expert
&lt;br /&gt;

&lt;br /&gt;
Please don't disappoint me by giving links to IBM sites. I need some experts' advice.
&lt;br /&gt;

&lt;br /&gt;
Thanks,
&lt;br /&gt;
Boopathy&lt;br /&gt;_________________&lt;br /&gt;Boopathy
&lt;br /&gt;
Charlotte&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>boo_sri</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228753#228753" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228753</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: File comparison in cobol</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228752#228752</link>
<pubDate>Thu, 18 Mar 2010 19:48:30 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228752#228752</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=65865&quot; target=&quot;_blank&quot;&gt;Terry Heinze&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 1:18 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
What is &quot;N:N&quot;?&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;color: blue&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;....  Terry&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Terry Heinze</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228655#228655" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228752</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: COBOl value clause for decimal- causing problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228751#228751</link>
<pubDate>Thu, 18 Mar 2010 19:33:40 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228751#228751</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=34671&quot; target=&quot;_blank&quot;&gt;dick scherrer&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 1:03 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;But outside ChangeMan, the same code is compiling clean!! &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;The compiler does not like a decimal in the value. &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
I suspect there is some &quot;bad magic&quot; in ChangeMan rather than the compiler. . . Note that neither variable generated an error in this compile:
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;PP 5655-S71 IBM Enterprise COBOL for z/OS&amp;nbsp; 4.1.0
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;01&amp;nbsp; V1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PIC V9&amp;#40;01&amp;#41; VALUE 0.5. 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;01&amp;nbsp; V2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PIC V9&amp;#40;01&amp;#41; VALUE&amp;nbsp; .5. 
&lt;br /&gt;

&lt;br /&gt;
End of compilation 1,&amp;nbsp; program DSCHTEST,&amp;nbsp; no statements flagged. 
&lt;br /&gt;
Return code 0 &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;_________________&lt;br /&gt;Hope this helps,
&lt;br /&gt;

&lt;br /&gt;
d.sch.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dick scherrer</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228497#228497" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228751</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: RE: 2 input file ==&gt; 2 output file</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228750#228750</link>
<pubDate>Thu, 18 Mar 2010 19:11:22 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228750#228750</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=55601&quot; target=&quot;_blank&quot;&gt;Skolusu&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: 2 input file ==&amp;gt; 2 output file&lt;br /&gt;
Posted: Fri Mar 19, 2010 12:41 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
thenone1987,
&lt;br /&gt;

&lt;br /&gt;
Well try this DFSORT JOB and let me know if it gives you the desired results 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
//STEP0100 EXEC PGM=SORT&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
//SYSOUT&amp;nbsp; &amp;nbsp;DD SYSOUT=*&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
//SORTIN&amp;nbsp; &amp;nbsp;DD *&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
//SORTOUT&amp;nbsp; DD DSN=&amp;amp;&amp;amp;HEADR,DISP=&amp;#40;,PASS&amp;#41;,SPACE=&amp;#40;TRK,&amp;#40;1,0&amp;#41;,RLSE&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
//SYSIN&amp;nbsp; &amp;nbsp; DD *&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; SORT FIELDS=COPY&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; OUTFIL REMOVECC,BUILD=&amp;#40;290X&amp;#41;,HEADER1=&amp;#40;3C'$'&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
//*&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
//STEP0200 EXEC PGM=SORT&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
//SYSOUT&amp;nbsp; &amp;nbsp;DD SYSOUT=*&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
//SORTIN&amp;nbsp; &amp;nbsp;DD DSN=&amp;amp;&amp;amp;HEADR,DISP=SHR,VOL=REF=*.STEP0100.SORTOUT&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
//&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DD DSN=Your input FB 290 byte file2,DISP=SHR
&lt;br /&gt;
//&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DD DSN=&amp;amp;&amp;amp;HEADR,DISP=SHR,VOL=REF=*.STEP0100.SORTOUT&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
//&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DD DSN=Your input FB 290 byte file1,DISP=SHR
&lt;br /&gt;
//ONLYF1&amp;nbsp; &amp;nbsp;DD SYSOUT=*&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
//OTHER&amp;nbsp; &amp;nbsp; DD SYSOUT=*&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
//SYSIN&amp;nbsp; &amp;nbsp; DD *&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; INREC IFTHEN=&amp;#40;WHEN=GROUP,BEGIN=&amp;#40;1,3,CH,EQ,C'$$$'&amp;#41;,PUSH=&amp;#40;291&amp;#58;ID=1&amp;#41;&amp;#41;
&lt;br /&gt;
&amp;nbsp; SORT FIELDS=&amp;#40;14,08,PD,A,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;38,10,CH,A,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;58,10,CH,A&amp;#41;,EQUALS&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; SUM FIELDS=&amp;#40;291,1,ZD&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; OUTFIL FNAMES=ONLYF1,BUILD=&amp;#40;1,290&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; INCLUDE=&amp;#40;291,1,ZD,EQ,1,AND,58,10,CH,LT,C'DATE COND'&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; OUTFIL FNAMES=OTHER,BUILD=&amp;#40;1,290&amp;#41;,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; INCLUDE=&amp;#40;291,1,ZD,GT,2,AND,38,10,CH,GT,C'DATE COND',AND,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;001,3,CH,NE,C'$$$'&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
//*&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;_________________&lt;br /&gt;Kolusu - DFSORT Development Team (IBM) 
&lt;br /&gt;
DFSORT is on the Web at: 
&lt;br /&gt;
&lt;a href=&quot;http://www.ibm.com/storage/dfsort/&quot; target=&quot;_blank&quot;&gt;www.ibm.com/storage/dfsort/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Skolusu</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228397#228397" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228750</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: COBOl value clause for decimal- causing problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228749#228749</link>
<pubDate>Thu, 18 Mar 2010 18:50:23 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228749#228749</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=39689&quot; target=&quot;_blank&quot;&gt;agkshirsagar&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 12:20 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Deja Vu,
&lt;br /&gt;
Can you tell us the first line of your compiler listing in both cases 
&lt;br /&gt;
a. when you compile using JCL and 
&lt;br /&gt;
b. using Changeman?
&lt;br /&gt;
For ex It should look like -&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;1PP 5655-G53 IBM Enterprise COBOL for z/OS&amp;nbsp; 3.X.X &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
I am thinking there are two different compiler versions. 
&lt;br /&gt;
I assume this is a pure cobol program and no db2 preprocessor/cics precompiler steps before compiler. If this is true then the code shown in original post should compile clean using Enterprise COBOL. 
&lt;br /&gt;

&lt;br /&gt;
Also, please paste your working storage code snippet in full. I mean the level number and all.&lt;br /&gt;_________________&lt;br /&gt;The trouble with the rat race is that even if you win, you're still a rat.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>agkshirsagar</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228497#228497" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228749</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: RE: Modifying MODS routine names</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228748#228748</link>
<pubDate>Thu, 18 Mar 2010 18:46:47 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228748#228748</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=54465&quot; target=&quot;_blank&quot;&gt;David Eisenberg&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 12:16 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Are the exits always of the form:
&lt;br /&gt;

&lt;br /&gt;
Exx=(name,length)&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Yes; we won't be using the other MODS parameters.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Can I assume that the input and output files have RECFM=FB and LRECL=80?&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Yes.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;I assume there's no pattern to the actual exit names that would allow us to use FINDREP to change 'name' to 'namea' ... right?&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
No, other than the fact that the names are never longer than 7 characters (so it is always safe to append the &quot;A&quot;). There will be several exits in each ICETOOL application, and there are many different applications.
&lt;br /&gt;

&lt;br /&gt;
That said, if we were to come up with a consistent naming convention, what sort of pattern would be helpful for FINDREP? We might be able to enforce a rule that each exit name begins with the characters &quot;DF&quot; (for DFSORT); and we might also be able to insist that each name be exactly 7 characters long. Would that help?
&lt;br /&gt;

&lt;br /&gt;
David&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>David Eisenberg</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228730#228730" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228748</comments>
</item>
<item>
<title>DB2 :: RE: Column length problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228747#228747</link>
<pubDate>Thu, 18 Mar 2010 18:37:43 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228747#228747</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=40616&quot; target=&quot;_blank&quot;&gt;enrico-sorichetti&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: Column length problem&lt;br /&gt;
Posted: Fri Mar 19, 2010 12:07 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Now , The vendor has started sending the vendor id as 40 character instead of 24&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
as usual poor understanding of &amp;lt;almost everything&amp;gt;  &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_biggrin.gif&quot; alt=&quot;icon_biggrin.gif&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;_________________&lt;br /&gt;Regards
&lt;br /&gt;
enrico sorichetti
&lt;br /&gt;
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
&lt;br /&gt;
so that I am sure that the information requested can be reached with a very small effort :-)&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>enrico-sorichetti</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228731#228731" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228747</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: RE: IEBGENER and Sort</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228746#228746</link>
<pubDate>Thu, 18 Mar 2010 18:34:57 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228746#228746</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=62307&quot; target=&quot;_blank&quot;&gt;d_sarlie&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 12:04 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
There is no specific requirement with regard to the question I posted.It is for my understanding .The information  given in the post by Sambhaji was more than enough.Thanks for the help.&lt;br /&gt;_________________&lt;br /&gt;jeba&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>d_sarlie</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228627#228627" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228746</comments>
</item>
<item>
<title>SMS &amp; VSAM :: RE: Increase the version of V00 in GDG</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228745#228745</link>
<pubDate>Thu, 18 Mar 2010 18:31:24 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228745#228745</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=62307&quot; target=&quot;_blank&quot;&gt;d_sarlie&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 12:01 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Thanks for the info.&lt;br /&gt;_________________&lt;br /&gt;jeba&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>d_sarlie</dc:creator>
<dc:subject>SMS &amp; VSAM</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228648#228648" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228745</comments>
</item>
<item>
<title>JCL :: RE: NEW,CATLG,DELETE run for the first time and then rerun</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228744#228744</link>
<pubDate>Thu, 18 Mar 2010 18:30:04 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228744#228744</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=79666&quot; target=&quot;_blank&quot;&gt;Akatsukami&lt;/a&gt;&lt;br /&gt;

Posted: Fri Mar 19, 2010 12:00 am (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;dick scherrer wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Hello,
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;I respectfully disagree. &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;Please reconsider. . .&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
I respectfully decline  &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_wink.gif&quot; alt=&quot;icon_wink.gif&quot; border=&quot;0&quot; /&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;&quot;S&quot; abends &lt;span style=&quot;font-weight: bold&quot;&gt;are&lt;/span&gt; covered by &quot;system completion code&quot;, but &quot;return- codes&quot; are not.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
I entirely agree, and I hope that I did not write so unclearly that anyone could come to think so, or that I think so.
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt; Neither are &quot;U&quot; abends.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
I agree; IBM refers to them as &quot;user completion codes&quot;.  Really.
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;I suspect less that 1/2 of 1% of the people here &lt;span style=&quot;font-style: italic&quot;&gt;ever&lt;/span&gt; called an s0c1 a 193 abend . . . Or an sb37 a 2871 abend. . . &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
Probably not.  To the left, I &lt;span style=&quot;font-style: italic&quot;&gt;do&lt;/span&gt; know SAS messages report its user abends as hexadecimal numbers, rather than as decimal numbers as is usual for user abends.  I doubt if any SAS programmer has been confused by so much as a microfortnight by this, but I feel that it is illustrative of the fact that &lt;span style=&quot;font-style: italic&quot;&gt;every&lt;/span&gt; completion(=abend) and return code is a three-nybble binary number, and that other means than range or internal representation must be used to distinguish them.&lt;br /&gt;_________________&lt;br /&gt;Dinosaurs dominated the Earth's ecosystem for one hundred million years.  During this time, the largest mammal was the size of, and looked very much like, a rat.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Akatsukami</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228619#228619" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228744</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: Copybook Scope Terminator within IF/Evaluate Conditions</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228743#228743</link>
<pubDate>Thu, 18 Mar 2010 18:29:02 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228743#228743</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=34671&quot; target=&quot;_blank&quot;&gt;dick scherrer&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 11:59 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;My Question is whether the display 'STILL IN THE ELSE LOOP' statement will get executed. &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;What happens when you run this?&lt;br /&gt;_________________&lt;br /&gt;Hope this helps,
&lt;br /&gt;

&lt;br /&gt;
d.sch.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dick scherrer</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228690#228690" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228743</comments>
</item>
<item>
<title>JCL :: RE: Regarding COND Parameter</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228742#228742</link>
<pubDate>Thu, 18 Mar 2010 18:25:33 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228742#228742</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=34671&quot; target=&quot;_blank&quot;&gt;dick scherrer&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 11:55 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
While reviewing the reference material Enrico provided, keep in mind that steps that should always run need no COND=. The steps that depend on the prior step need to mention that step in the COND=. . .&lt;br /&gt;_________________&lt;br /&gt;Hope this helps,
&lt;br /&gt;

&lt;br /&gt;
d.sch.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dick scherrer</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228689#228689" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228742</comments>
</item>
<item>
<title>DB2 :: RE: Column length problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228741#228741</link>
<pubDate>Thu, 18 Mar 2010 18:20:44 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228741#228741</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=35204&quot; target=&quot;_blank&quot;&gt;daveporcelan&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 11:50 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;
&lt;br /&gt;
(one of the reason being ..its primary key )
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
This reason alone should point to changing the table.
&lt;br /&gt;

&lt;br /&gt;
I think enrico was referring to:
&lt;br /&gt;
What if two 40 byte ids are the same accross the first 24 bytes?
&lt;br /&gt;
How will they coexist in the table?
&lt;br /&gt;

&lt;br /&gt;
Either tell the vendor to scrap the 40 byte id,
&lt;br /&gt;
or realize the impact of this and take the 'best' approach, not the 'easiest'.
&lt;br /&gt;

&lt;br /&gt;
What type of buisness has requirements that would want you to do otherwise?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>daveporcelan</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228731#228731" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228741</comments>
</item>
<item>
<title>SMS &amp; VSAM :: RE: Increase the version of V00 in GDG</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228740#228740</link>
<pubDate>Thu, 18 Mar 2010 18:15:25 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228740#228740</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=34671&quot; target=&quot;_blank&quot;&gt;dick scherrer&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 11:45 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
It is a version (rather than a generation).
&lt;br /&gt;

&lt;br /&gt;
It (version) is nearly never used for files created by a business application. . . . 
&lt;br /&gt;

&lt;br /&gt;
Unless there is some pressing business reason to use this, suggest you be aware of version and then never use it. . . &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_smile.gif&quot; alt=&quot;icon_smile.gif&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;_________________&lt;br /&gt;Hope this helps,
&lt;br /&gt;

&lt;br /&gt;
d.sch.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dick scherrer</dc:creator>
<dc:subject>SMS &amp; VSAM</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228648#228648" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228740</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: RE: Modifying MODS routine names</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228739#228739</link>
<pubDate>Thu, 18 Mar 2010 18:11:24 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228739#228739</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=2542&quot; target=&quot;_blank&quot;&gt;Frank Yaeger&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 11:41 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
David,
&lt;br /&gt;

&lt;br /&gt;
Are the exits always of the form:
&lt;br /&gt;

&lt;br /&gt;
Exx=(name,length)
&lt;br /&gt;

&lt;br /&gt;
or can they have different forms such as:
&lt;br /&gt;

&lt;br /&gt;
Exx=(name,length,lib,N)
&lt;br /&gt;
Exx=(name,length,lib)
&lt;br /&gt;

&lt;br /&gt;
Can I assume that the input and output files have RECFM=FB and LRECL=80?
&lt;br /&gt;

&lt;br /&gt;
I assume there's no pattern to the actual exit names that would allow us to use FINDREP to change 'name' to 'namea' ... right?&lt;br /&gt;_________________&lt;br /&gt;Frank Yaeger - DFSORT Development Team  (IBM) - &lt;a href=&quot;mailto:yaeger@us.ibm.com&quot;&gt;yaeger@us.ibm.com&lt;/a&gt;             
&lt;br /&gt;
Specialties: JOINKEYS, FINDREP, WHEN=GROUP,  ICETOOL, Symbols, Migration         
&lt;br /&gt;
=&gt; DFSORT/MVS is on the Web at &lt;a href=&quot;http://www.ibm.com/storage/dfsort/&quot; target=&quot;_blank&quot;&gt;http://www.ibm.com/storage/dfsort/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Frank Yaeger</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228730#228730" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228739</comments>
</item>
<item>
<title>JCL :: RE: NEW,CATLG,DELETE run for the first time and then rerun</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228738#228738</link>
<pubDate>Thu, 18 Mar 2010 18:06:03 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228738#228738</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=34671&quot; target=&quot;_blank&quot;&gt;dick scherrer&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 11:36 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;I respectfully disagree. &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;Please reconsider. . .
&lt;br /&gt;

&lt;br /&gt;
&quot;S&quot; abends &lt;span style=&quot;font-weight: bold&quot;&gt;are&lt;/span&gt; covered by &quot;system completion code&quot;, but &quot;return- codes&quot; are not. Neither are &quot;U&quot; abends.
&lt;br /&gt;

&lt;br /&gt;
It really &lt;span style=&quot;font-style: italic&quot;&gt;doesn't matter&lt;/span&gt; that &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;If the problem program abended with any non-zero completion code -- 1 to 4095 -- JES will delete the data set and its catalog entry&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt; is technically correct. . . It &lt;span style=&quot;font-style: italic&quot;&gt;does matter &lt;/span&gt;that this is not the commonly accepted way to mention such.
&lt;br /&gt;

&lt;br /&gt;
I suspect less that 1/2 of 1% of the people here &lt;span style=&quot;font-style: italic&quot;&gt;ever&lt;/span&gt; called an s0c1 a 193 abend . . . Or an sb37 a 2871 abend. . . 
&lt;br /&gt;

&lt;br /&gt;
@jennybrahma:
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;In the first case what would be the abend? S0C1 or S0C4?&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;In the first case, it would be any Sxxx or Unnnn ABEND (not a return code). Either the SOC1 or SOC4 would cause the file to be deleted. So would an SB37 or S806 or etc. . .&lt;br /&gt;_________________&lt;br /&gt;Hope this helps,
&lt;br /&gt;

&lt;br /&gt;
d.sch.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>dick scherrer</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228619#228619" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228738</comments>
</item>
<item>
<title>DB2 :: RE: Column length problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228737#228737</link>
<pubDate>Thu, 18 Mar 2010 18:04:31 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228737#228737</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=40616&quot; target=&quot;_blank&quot;&gt;enrico-sorichetti&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: Column length problem&lt;br /&gt;
Posted: Thu Mar 18, 2010 11:34 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
the requirement is just ... &amp;lt;stupid&amp;gt; 
&lt;br /&gt;

&lt;br /&gt;
if the 24bytes and the 40 bytes represent the same entity ... use a bit of logic for the consequences 
&lt;br /&gt;

&lt;br /&gt;
what difference does it make if the primary key is 40 bytes ?? 
&lt;br /&gt;

&lt;br /&gt;
now...
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;what will be the relation of vendor ID of 40 bytes to the vendor ID of 24 bytes &lt;/span&gt;?&lt;br /&gt;_________________&lt;br /&gt;Regards
&lt;br /&gt;
enrico sorichetti
&lt;br /&gt;
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
&lt;br /&gt;
so that I am sure that the information requested can be reached with a very small effort :-)&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>enrico-sorichetti</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228731#228731" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228737</comments>
</item>
<item>
<title>DB2 :: RE: Column length problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228736#228736</link>
<pubDate>Thu, 18 Mar 2010 17:58:31 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228736#228736</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=35204&quot; target=&quot;_blank&quot;&gt;daveporcelan&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 11:28 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
From what I can see, the only way to do it without changing your 100 programs is to have a sort step truncate the field at 24 bytes.
&lt;br /&gt;

&lt;br /&gt;
Otherwise, without changing the length of the column (the best solution) is:
&lt;br /&gt;
1) Define a new column new_vendor_id length of 40
&lt;br /&gt;
2) Change programs to:
&lt;br /&gt;
     Process input file with new length
&lt;br /&gt;
     Write vendor id to new column
&lt;br /&gt;
     Overlay data in old column to say 'use new_vendor_id'
&lt;br /&gt;

&lt;br /&gt;
I am sure I left out something (alot of things).
&lt;br /&gt;

&lt;br /&gt;
There is no way you can have your data change like this without having to change your programs.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>daveporcelan</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228731#228731" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228736</comments>
</item>
<item>
<title>Compuware Tools :: RE: File-Aid comma-Separated file to Copybook Layout</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228735#228735</link>
<pubDate>Thu, 18 Mar 2010 17:56:22 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228735#228735</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=40616&quot; target=&quot;_blank&quot;&gt;enrico-sorichetti&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: File-Aid comma-Separated file to Copybook Layout&lt;br /&gt;
Posted: Thu Mar 18, 2010 11:26 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
my preferred coding would be ...
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;istring = &amp;quot;abcd;efg;hkj;lmnopqrst&amp;quot;
&lt;br /&gt;
ostring = &amp;quot;&amp;quot;
&lt;br /&gt;
do while istring &amp;lt;&amp;gt; &amp;quot;&amp;quot;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;parse var istring token &amp;quot;;&amp;quot; istring
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;ostring = ostring || left&amp;#40;token,10&amp;#41;
&lt;br /&gt;
end
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;tested &lt;/span&gt;&lt;br /&gt;_________________&lt;br /&gt;Regards
&lt;br /&gt;
enrico sorichetti
&lt;br /&gt;
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
&lt;br /&gt;
so that I am sure that the information requested can be reached with a very small effort :-)&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>enrico-sorichetti</dc:creator>
<dc:subject>Compuware Tools</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228705#228705" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228735</comments>
</item>
<item>
<title>DB2 :: RE: Column length problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228734#228734</link>
<pubDate>Thu, 18 Mar 2010 17:54:03 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228734#228734</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=78552&quot; target=&quot;_blank&quot;&gt;milind suman&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 11:24 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi, 
&lt;br /&gt;

&lt;br /&gt;
Due to business requirement , the existing Column length of 24 can not be modified (one of the reason being ..its primary key ) . However any new column or a new table can be added.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>milind suman</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228731#228731" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228734</comments>
</item>
<item>
<title>DB2 :: RE: Column length problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228733#228733</link>
<pubDate>Thu, 18 Mar 2010 17:50:33 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228733#228733</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=40616&quot; target=&quot;_blank&quot;&gt;enrico-sorichetti&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: Column length problem&lt;br /&gt;
Posted: Thu Mar 18, 2010 11:20 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
recreate the table with the proper column definition
&lt;br /&gt;
if the programs do not make any computation/assumption based on the 24 ( old column length ) 
&lt;br /&gt;
then simply a table unload/define/reload and recompiling everything should work without any program changes
&lt;br /&gt;
but we know nothing about the processing which takes place inside Your program
&lt;br /&gt;

&lt;br /&gt;
storing 40 bytes in 24 bytes .... brr the nightmare of storage salesmen &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_biggrin.gif&quot; alt=&quot;icon_biggrin.gif&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;_________________&lt;br /&gt;Regards
&lt;br /&gt;
enrico sorichetti
&lt;br /&gt;
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
&lt;br /&gt;
so that I am sure that the information requested can be reached with a very small effort :-)&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>enrico-sorichetti</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228731#228731" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228733</comments>
</item>
<item>
<title>Compuware Tools :: RE: File-Aid comma-Separated file to Copybook Layout</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228732#228732</link>
<pubDate>Thu, 18 Mar 2010 17:42:11 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228732#228732</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=79666&quot; target=&quot;_blank&quot;&gt;Akatsukami&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: File-Aid comma-Separated file to Copybook Layout&lt;br /&gt;
Posted: Thu Mar 18, 2010 11:12 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Since I am in a good mood and no pain to speak of today, I will provide the Rexx.  Note that there is no error checking to speak of; it assumes the length of each token is less than 10 bytes, and that the delimiter is always a semi-colon.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
/* Rexx */&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; trace i&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; arg in out .&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;quot;ALLOC DA&amp;#40;&amp;quot; || in&amp;nbsp; || &amp;quot;&amp;#41; FI&amp;#40;TOOLIN&amp;#41;&amp;nbsp; SHR&amp;quot;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;quot;ALLOC DA&amp;#40;&amp;quot; || out || &amp;quot;&amp;#41; FI&amp;#40;TOOLOUT&amp;#41; OLD&amp;quot;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;quot;EXECIO 1 DISKR TOOLIN&amp;quot;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; do while &amp;#40;rc=0&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; outbuf = ''&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; pull inbuf&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; p = pos&amp;#40;';',inbuf&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; do while &amp;#40;p¬=0&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; car&amp;nbsp; &amp;nbsp; = substr&amp;#40;inbuf,1,p-1&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; inbuf&amp;nbsp; = substr&amp;#40;inbuf,p+1&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; outbuf = outbuf || car || repeat&amp;#40;10-length&amp;#40;car&amp;#41;&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; p&amp;nbsp; &amp;nbsp; &amp;nbsp; = pos&amp;#40;';',inbuf&amp;#41;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; end&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; outbuf&amp;nbsp; &amp;nbsp;= outbuf || inbuf&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; push outbuf&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;quot;EXECIO 1 DISKW TOOLOUT&amp;quot;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;quot;EXECIO 1 DISKR TOOLIN&amp;quot;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; end&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; exit 0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
/*********************************************************************/
&lt;br /&gt;
/*&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;*/
&lt;br /&gt;
/* repeat&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; */
&lt;br /&gt;
/*&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;*/
&lt;br /&gt;
/*********************************************************************/
&lt;br /&gt;
&amp;nbsp; repeat&amp;#58; procedure&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; trace o&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; arg how_many, what&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; if &amp;#40;&amp;#40;what=&amp;quot;WHAT&amp;quot;&amp;#41; | &amp;#40;what=''&amp;#41;&amp;#41; then&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; what = ' '&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; result = ''&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; do i = 1 to how_many&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; result = result || what&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; end&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; trace o&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&amp;nbsp; return result&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;_________________&lt;br /&gt;Dinosaurs dominated the Earth's ecosystem for one hundred million years.  During this time, the largest mammal was the size of, and looked very much like, a rat.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Akatsukami</dc:creator>
<dc:subject>Compuware Tools</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228705#228705" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228732</comments>
</item>
</channel>
</rss>

<!-- Page generation time: 0.1011s  - Memory Usage: 2.377 Mb  - GZIP enabled -->