<?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>Thu, 18 Mar 2010 15:01:20 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>JCL :: RE: Table reference characters</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228691#228691</link>
<pubDate>Thu, 18 Mar 2010 14:59:42 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228691#228691</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=19682&quot; target=&quot;_blank&quot;&gt;Anuj Dhawan&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 8:29 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Check &lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;a href=&quot;http://www.google.co.in/search?hl=en&amp;amp;q=publib.boulder.ibm.com%2Fiseries%2Fv5r2%2Fic2924%2Fbooks%2Fib6p6mst.pdf+&amp;amp;meta=&amp;amp;aq=f&amp;amp;aqi=&amp;amp;aql=&amp;amp;oq=&amp;amp;gs_rfai=&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;the second link here&lt;/a&gt;&lt;/span&gt;, page 48 (Varying Fonts on a Page) should give you a hint ...&lt;br /&gt;_________________&lt;br /&gt;Success is a science; if you have the conditions, you get the result.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Anuj Dhawan</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228681#228681" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228691</comments>
</item>
<item>
<title>Mainframe COBOL :: Copybook Scope Terminator within IF/Evaluate Conditions</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228690#228690</link>
<pubDate>Thu, 18 Mar 2010 14:57:17 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228690#228690</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=63700&quot; target=&quot;_blank&quot;&gt;ramanindya55&lt;/a&gt;&lt;br /&gt;
Subject: Copybook Scope Terminator within IF/Evaluate Conditions&lt;br /&gt;
Posted: Thu Mar 18, 2010 8:27 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;
I have following code.
&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; &amp;nbsp; IF AGE &amp;gt; 20 AND AGE &amp;lt; 60 THEN
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Move 'Valid Data' TO WS-OUT-TEXT
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; ELSE
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Move 'Invalid Data' TO WS-OUT-TEXT
&lt;br /&gt;
COPY PRINTEMP.
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DISPLAY 'STILL IN THE ELSE LOOP'
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; END-IF.
&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;
And in the Copybook, I have following piece of Code. I have not used any Scope terminator in the copybook.
&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;DISPLAY 'In PRINTEMP copybook'&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
My Question is whether the display 'STILL IN THE ELSE LOOP' statement will get executed. 
&lt;br /&gt;
If so, How the compiler is interpreting the Scope terminator which I have given after COPYBOOK ?
&lt;br /&gt;
Please help me if you have any idea.
&lt;br /&gt;

&lt;br /&gt;
Thanks in Advance !!!&lt;br /&gt;_________________&lt;br /&gt;Thanks &amp;amp; regards
&lt;br /&gt;
Venky,&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>ramanindya55</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=228690</comments>
</item>
<item>
<title>JCL :: Regarding COND Parameter</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228689#228689</link>
<pubDate>Thu, 18 Mar 2010 14:52:11 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228689#228689</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=20916&quot; target=&quot;_blank&quot;&gt;mkk157&lt;/a&gt;&lt;br /&gt;
Subject: Regarding COND Parameter&lt;br /&gt;
Posted: Thu Mar 18, 2010 8:22 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
I have 10 steps in a Job.
&lt;br /&gt;

&lt;br /&gt;
Requirement is 
&lt;br /&gt;
1) Every Odd step should execute irrespective of the return code from any of the previous steps.
&lt;br /&gt;
i.e. STEP1, STEP3, STEP5, STEP7, STEP9
&lt;br /&gt;

&lt;br /&gt;
2) Every Even step should execute only if its preceeding step executes successfully. (Return code = 0)
&lt;br /&gt;
i.e. STEP2 should run only if STEP1 executes successfully.
&lt;br /&gt;
     STEP4 should run only if STEP3 executes successfully.
&lt;br /&gt;
     STEP6 should run only if STEP5 executes successfully.
&lt;br /&gt;
     STEP8 should run only if STEP7 executes successfully.
&lt;br /&gt;
     STEP10 should run only if STE9 executes successfully.
&lt;br /&gt;

&lt;br /&gt;
Please help me in writing the COND parameters at each step.&lt;br /&gt;_________________&lt;br /&gt;Thanks &amp; Regards,
&lt;br /&gt;
M K K&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>mkk157</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=228689</comments>
</item>
<item>
<title>JCL :: RE: Table reference characters</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228688#228688</link>
<pubDate>Thu, 18 Mar 2010 14:46:40 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228688#228688</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=9181&quot; target=&quot;_blank&quot;&gt;Squeak6&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 8:16 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
yes... AFP... but more so with the PPFA using  &quot;TRCREF&quot;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Squeak6</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228681#228681" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228688</comments>
</item>
<item>
<title>JCL :: RE: Table reference characters</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228687#228687</link>
<pubDate>Thu, 18 Mar 2010 14:41:55 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228687#228687</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=19682&quot; target=&quot;_blank&quot;&gt;Anuj Dhawan&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 8:11 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
or is it something to do with &lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/IBM_Advanced_Function_Printing_(AFP)&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;AFP?&lt;/a&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
Thrusday was never a guess day before this...&lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_neutral.gif&quot; alt=&quot;icon_neutral.gif&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;_________________&lt;br /&gt;Success is a science; if you have the conditions, you get the result.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Anuj Dhawan</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228681#228681" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228687</comments>
</item>
<item>
<title>JCL :: RE: Table reference characters</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228686#228686</link>
<pubDate>Thu, 18 Mar 2010 14:40:47 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228686#228686</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=9181&quot; target=&quot;_blank&quot;&gt;Squeak6&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 8:10 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Sorry for the lack of information... I'm been reading the PPFA manuals and I'm still unable to get the informaion I need... I'll keep looking..&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Squeak6</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228681#228681" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228686</comments>
</item>
<item>
<title>JCL :: RE: Table reference characters</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228685#228685</link>
<pubDate>Thu, 18 Mar 2010 14:33:19 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228685#228685</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=80237&quot; target=&quot;_blank&quot;&gt;PeterHolland&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 8:03 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I gues it is this : Page Printer Formatting Aid
&lt;br /&gt;

&lt;br /&gt;
If yes try the following manual :
&lt;br /&gt;

&lt;br /&gt;
IBM Page Printer Formatting Aid: User’s Guide S544-5284&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>PeterHolland</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228681#228681" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228685</comments>
</item>
<item>
<title>JCL :: RE: Table reference characters</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228684#228684</link>
<pubDate>Thu, 18 Mar 2010 14:31:52 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228684#228684</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: Table reference characters&lt;br /&gt;
Posted: Thu Mar 18, 2010 8:01 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_question.gif&quot; alt=&quot;icon_question.gif&quot; border=&quot;0&quot; /&gt;  &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_question.gif&quot; alt=&quot;icon_question.gif&quot; border=&quot;0&quot; /&gt;  &lt;img src=&quot;http://ibmmainframes.com/images/smiles/icon_question.gif&quot; alt=&quot;icon_question.gif&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Bill O'Boyle</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228681#228681" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228684</comments>
</item>
<item>
<title>JCL :: RE: Table reference characters</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228683#228683</link>
<pubDate>Thu, 18 Mar 2010 14:30:23 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228683#228683</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: Thu Mar 18, 2010 8:00 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
You posted in the JCL forum, but you're talking about COBOL and something called &quot;TRCREF&quot; (whatever that may be).  I think this should be somewhere else, but I'm not sure yet where.
&lt;br /&gt;

&lt;br /&gt;
What do you mean by &quot;create an overlay&quot;?  Is TRCREF is vendor product -- and if so, from which vendor?  What are &quot;table reference characters&quot;?  I'm not sure I understand the term as you're using it.  Is this Enterprise COBOL and if so, which release?  If not, which COBOL are you using?&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>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228681#228681" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228683</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=228682#228682</link>
<pubDate>Thu, 18 Mar 2010 14:25:29 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228682#228682</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: Thu Mar 18, 2010 7:55 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;gcicchet wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Hi Akatsukami,
&lt;br /&gt;

&lt;br /&gt;
you have return codes and abends confused.
&lt;br /&gt;

&lt;br /&gt;
If the job abends it will not complete with a completion code of 1 to 4095,
&lt;br /&gt;

&lt;br /&gt;
it will be an abend code such as S*** or U***.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
I respectfully disagree.
&lt;br /&gt;

&lt;br /&gt;
If you look at &lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;a href=&quot;http://publibz.boulder.ibm.com/epubs/pdf/iea2h790.pdf&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;z/OS V1R10.0 MVS System Codes&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; you will see that IBM does indeed refer to abend codes as &quot;system completion codes&quot;.  There are other features (bits set in the TCB, I think) that distinguish between a non-abending return code, a user abend, and a system abend; the range of the code turned is not one of them (hex FFF = decimal 4095).&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=228682</comments>
</item>
<item>
<title>JCL :: Table reference characters</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228681#228681</link>
<pubDate>Thu, 18 Mar 2010 14:19:34 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228681#228681</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=9181&quot; target=&quot;_blank&quot;&gt;Squeak6&lt;/a&gt;&lt;br /&gt;
Subject: Table reference characters&lt;br /&gt;
Posted: Thu Mar 18, 2010 7:49 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello everyone… I’m trying to create an overlay.  In my PPFA code I want to bold a header line (every time it’s written).   I was reading about the “TRCREF” that should handle this.  For some reason when I try to add a Table reference characters in my COBOL (the 2nd byte after the CC) the 2nd position is showing up on my report.  It’s not it’s supposed to be my Table reference characters.
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Squeak....&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Squeak6</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228681#228681" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228681</comments>
</item>
<item>
<title>DB2 :: RE: CASE statement within WHERE clause</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228680#228680</link>
<pubDate>Thu, 18 Mar 2010 14:18:44 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228680#228680</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=78380&quot; target=&quot;_blank&quot;&gt;GuyC&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 7:48 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
a criteria 
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;REGNA_SZ = xxxxxxxxxxxxxxxxx &lt;/span&gt;
&lt;br /&gt;
with xxxxxxxx being something that can be evaluated/calculated once
&lt;br /&gt;
is Stage 1 and indexable.
&lt;br /&gt;
most criteria with ORs are stage 2 and not indexable
&lt;br /&gt;

&lt;br /&gt;
So maybe the SA has a reason to ask for this.
&lt;br /&gt;
a possiblilty is 
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;REGNA_SZ between :hvmin and :hvmax&lt;/span&gt;
&lt;br /&gt;
with (hvmin,hvmax) being (0,0), (1,999999) or (0,999999) depending on :type-flag&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>GuyC</dc:creator>
<dc:subject>DB2</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228395#228395" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228680</comments>
</item>
<item>
<title>CLIST &amp; REXX :: RE: Rexx passing mixed case</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228679#228679</link>
<pubDate>Thu, 18 Mar 2010 14:17:54 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228679#228679</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=61999&quot; target=&quot;_blank&quot;&gt;valyk&lt;/a&gt;&lt;br /&gt;
Subject: Re: Rexx passing mixed case&lt;br /&gt;
Posted: Thu Mar 18, 2010 7:47 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;superk wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&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;valyk wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;It appears that it is only the ARG function that converts the case. I would understand if I specified 'PARSE UPPER ARG', but I am not.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
ARG is equivelent to PARSE UPPER ARG
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;a href=&quot;http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IKJ4A370/3.2?DT=20060626210253#SPTREF23&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;3.2 ARG&lt;/span&gt;&lt;/a&gt;&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;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;
ARG retrieves the argument strings provided to a program or internal routine and assigns them to variables. It is a short form of the instruction: 
&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;&amp;gt;&amp;gt;__PARSE UPPER ARG_ _______________ _;__&amp;gt;&amp;lt;
&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;|_template_list_|&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Ah, that's the problem. I change 'ARG PARMS' to 'PARSE ARG PARMS' and it fixed the issue. I wonder why IBM defaults that function to behave like that?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>valyk</dc:creator>
<dc:subject>CLIST &amp; REXX</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228669#228669" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228679</comments>
</item>
<item>
<title>CLIST &amp; REXX :: RE: Rexx passing mixed case</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228678#228678</link>
<pubDate>Thu, 18 Mar 2010 14:14:55 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228678#228678</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=61999&quot; target=&quot;_blank&quot;&gt;valyk&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 7:44 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Well, I understand that. But, I want to keep my passed variables in the the single variable PARMS. Then parse the variable into many variables (PARM). As soon as I perform the 'ARG PARMS' statement, the contents are immediately converted to uppercase.
&lt;br /&gt;

&lt;br /&gt;
Here is a trace example:
&lt;br /&gt;

&lt;br /&gt;
First the call statement of the calling program:
&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;803 *-*&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CALL SCRNDSPL PARMS
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;gt;V&amp;gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot; BMS_PDS=BC.TS00.ENVUNIT.OMAP CPY_PDS=BC.TS00.ENVUNIT.COP
&lt;br /&gt;
YLIB SCREEN=DFH0MDEL MAPATTS=CHPV FLD_CNT=79 FLD_CHAR=X ATTR_CNT=14 FLD_CD=1 FL
&lt;br /&gt;
D_TYP=2 FLD_POS=3 FLD_LEN=4 FLD_LLEN=5 FLD_VAL=6 FLD_NAME=7 FLD_PROT=8 FLD_INTS
&lt;br /&gt;
=9 FLD_HILT=10 FLD_COLR=11 FLD_PICI=12 FLD_PICO=13 FLD_DFLT=14 RPT.0=3 RPT.1=0
&lt;br /&gt;
RPT.2=1 RPT.3=1 MAX_ROW=24 MAX_COL=80 INIT_CSR=R8C21 PNL_PREF=SCRN PNL_SUFF=MOD
&lt;br /&gt;
2 FLD.1=R1C3 R1C3.1=DFH0001 R1C3.2=FD R1C3.3=1,3 R1C3.4=5 R1C3.5=5 R1C3.6=XXXXX
&lt;br /&gt;
&amp;nbsp;R1C3.7=DELFFLD R1C3.8=UNPROT R1C3.9=BRT R1C3.10=OFF R1C3.11=NEUTRAL R1C3.12=X&amp;#40;
&lt;br /&gt;
5&amp;#41; R1C3.13=X&amp;#40;5&amp;#41; R1C3.14=&amp;#58;File FLD.2=R1C9 R1C9.1=DFH0002 R1C9.2=FD R1C9.3=1,9 R1
&lt;br /&gt;
C9.4=5 R1C9.5=5 R1C9.6=XXXXX R1C9.7=DELHFLD R1C9.8=UNPROT R1C9.9=BRT R1C9.10=OF
&lt;br /&gt;
F R1C9.11=NEUTRAL R1C9.12=X&amp;#40;5&amp;#41; R1C9.13=X&amp;#40;5&amp;#41; R1C9.14=&amp;#58;Help FLD.3=R2C1 R2C1.1=DFH
&lt;br /&gt;
0002 R2C1.2=TX R2C1.3=2,1 R2C1.4=78 R2C1.5=78 R2C1.6=--------------------------
&lt;br /&gt;
---------------------------------------------------- R2C1.7=-------------------
&lt;br /&gt;
----------------------------------------------------------- R2C1.8=ASKIP R2C1.9
&lt;br /&gt;
=NORM R2C1.10=OFF R2C1.11=BLUE R2C1.12=X&amp;#40;5&amp;#41; R2C1.13=X&amp;#40;5&amp;#41; R2C1.14=--------------
&lt;br /&gt;
---------------------------------------------------------------- FLD.4=R3C2 R3C
&lt;br /&gt;
2.1=DFH0003 R3C2.2=FD R3C2.3=3,2 R3C2.4=4 R3C2.5=4 R3C2.6=XXXX R3C2.7=DELID R3C
&lt;br /&gt;
2.8=PROT R3C2.9=NORM R3C2.10=OFF R3C2.11=BLUE R3C2.12=X&amp;#40;4&amp;#41; R3C2.13=X&amp;#40;4&amp;#41; R3C2.14
&lt;br /&gt;
=DEL0 FLD.5=R3C30 R3C30.1=DFH0004 R3C30.2=FD R3C30.3=3,30 R3C30.4=23 R3C30.5=23
&lt;br /&gt;
&amp;nbsp;R3C30.6=XXXXXXXXXXXXXXXXXXXXXXX R3C30.7=DELTITL R3C30.8=ASKIP R3C30.9=NORM R3C
&lt;br /&gt;
30.10=OFF R3C30.11=BLUE R3C30.12=X&amp;#40;23&amp;#41; R3C30.13=X&amp;#40;23&amp;#41; R3C30.14=Delete&amp;#58;Customer
&lt;br /&gt;
FLD.6=R6C2 R6C2.1=DFH0004 R6C2.2=TX R6C2.3=6,2 R6C2.4=4 R6C2.5=4 R6C2.6=Type R6
&lt;br /&gt;
C2.7=Type R6C2.8=ASKIP R6C2.9=BRT R6C2.10=OFF R6C2.11=GREEN R6C2.12= R6C2.13= R&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Now the first instruction in the called program, ARG PARMS:
&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; 22 *-* ARG PARMS
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp; &amp;nbsp;&amp;quot; BMS_PDS=BC.TS00.ENVUNIT.OMAP CPY_PDS=BC.TS00.ENVUNIT.COPYLIB SCR
&lt;br /&gt;
EEN=DFH0MDEL MAPATTS=CHPV FLD_CNT=79 FLD_CHAR=X ATTR_CNT=14 FLD_CD=1 FLD_TYP=2
&lt;br /&gt;
FLD_POS=3 FLD_LEN=4 FLD_LLEN=5 FLD_VAL=6 FLD_NAME=7 FLD_PROT=8 FLD_INTS=9 FLD_H
&lt;br /&gt;
ILT=10 FLD_COLR=11 FLD_PICI=12 FLD_PICO=13 FLD_DFLT=14 RPT.0=3 RPT.1=0 RPT.2=1
&lt;br /&gt;
RPT.3=1 MAX_ROW=24 MAX_COL=80 INIT_CSR=R8C21 PNL_PREF=SCRN PNL_SUFF=MOD2 FLD.1=
&lt;br /&gt;
R1C3 R1C3.1=DFH0001 R1C3.2=FD R1C3.3=1,3 R1C3.4=5 R1C3.5=5 R1C3.6=XXXXX R1C3.7=
&lt;br /&gt;
DELFFLD R1C3.8=UNPROT R1C3.9=BRT R1C3.10=OFF R1C3.11=NEUTRAL R1C3.12=X&amp;#40;5&amp;#41; R1C3.
&lt;br /&gt;
13=X&amp;#40;5&amp;#41; R1C3.14=&amp;#58;FILE FLD.2=R1C9 R1C9.1=DFH0002 R1C9.2=FD R1C9.3=1,9 R1C9.4=5 R
&lt;br /&gt;
1C9.5=5 R1C9.6=XXXXX R1C9.7=DELHFLD R1C9.8=UNPROT R1C9.9=BRT R1C9.10=OFF R1C9.1
&lt;br /&gt;
1=NEUTRAL R1C9.12=X&amp;#40;5&amp;#41; R1C9.13=X&amp;#40;5&amp;#41; R1C9.14=&amp;#58;HELP FLD.3=R2C1 R2C1.1=DFH0002 R2C
&lt;br /&gt;
1.2=TX R2C1.3=2,1 R2C1.4=78 R2C1.5=78 R2C1.6=----------------------------------
&lt;br /&gt;
-------------------------------------------- R2C1.7=---------------------------
&lt;br /&gt;
--------------------------------------------------- R2C1.8=ASKIP R2C1.9=NORM R2
&lt;br /&gt;
C1.10=OFF R2C1.11=BLUE R2C1.12=X&amp;#40;5&amp;#41; R2C1.13=X&amp;#40;5&amp;#41; R2C1.14=----------------------
&lt;br /&gt;
-------------------------------------------------------- FLD.4=R3C2 R3C2.1=DFH0
&lt;br /&gt;
003 R3C2.2=FD R3C2.3=3,2 R3C2.4=4 R3C2.5=4 R3C2.6=XXXX R3C2.7=DELID R3C2.8=PROT
&lt;br /&gt;
&amp;nbsp;R3C2.9=NORM R3C2.10=OFF R3C2.11=BLUE R3C2.12=X&amp;#40;4&amp;#41; R3C2.13=X&amp;#40;4&amp;#41; R3C2.14=DEL0 FL
&lt;br /&gt;
D.5=R3C30 R3C30.1=DFH0004 R3C30.2=FD R3C30.3=3,30 R3C30.4=23 R3C30.5=23 R3C30.6
&lt;br /&gt;
=XXXXXXXXXXXXXXXXXXXXXXX R3C30.7=DELTITL R3C30.8=ASKIP R3C30.9=NORM R3C30.10=OF
&lt;br /&gt;
F R3C30.11=BLUE R3C30.12=X&amp;#40;23&amp;#41; R3C30.13=X&amp;#40;23&amp;#41; R3C30.14=DELETE&amp;#58;CUSTOMER FLD.6=R6
&lt;br /&gt;
C2 R6C2.1=DFH0004 R6C2.2=TX R6C2.3=6,2 R6C2.4=4 R6C2.5=4 R6C2.6=TYPE R6C2.7=TYP
&lt;br /&gt;
E R6C2.8=ASKIP R6C2.9=BRT R6C2.10=OFF R6C2.11=GREEN R6C2.12= R6C2.13= R6C2.14=T&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Notice the stem variable R3C30.14. The call passes 'Delete:Customer', but it is recieved as 'DELETE:CUSTOMER'&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>valyk</dc:creator>
<dc:subject>CLIST &amp; REXX</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228669#228669" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228678</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=228677#228677</link>
<pubDate>Thu, 18 Mar 2010 14:13:51 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228677#228677</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=19682&quot; target=&quot;_blank&quot;&gt;Anuj Dhawan&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 7:43 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
jennybrahma - &lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;a href=&quot;http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2B650/12.19?DT=20040712170508&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Please read through the DISP parameter in the manuals.&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;_________________&lt;br /&gt;Success is a science; if you have the conditions, you get the result.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Anuj Dhawan</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=228677</comments>
</item>
<item>
<title>DB2 :: RE: Way to physically move the rows from one table to another</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228676#228676</link>
<pubDate>Thu, 18 Mar 2010 14:13:45 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228676#228676</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 7:43 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;Kindly post your requirement/problem instead of asking the possibility of a function in it. &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
Please read the entire topic. . .
&lt;br /&gt;

&lt;br /&gt;
The requirement seems to be quite clear. . .
&lt;br /&gt;

&lt;br /&gt;
And the way to accomplish it is clear also. . .  Just not work-free enough?&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=228410#228410" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228676</comments>
</item>
<item>
<title>CLIST &amp; REXX :: RE: Rexx passing mixed case</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228675#228675</link>
<pubDate>Thu, 18 Mar 2010 14:11:41 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228675#228675</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=1924&quot; target=&quot;_blank&quot;&gt;superk&lt;/a&gt;&lt;br /&gt;
Subject: Re: Rexx passing mixed case&lt;br /&gt;
Posted: Thu Mar 18, 2010 7:41 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;valyk wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;It appears that it is only the ARG function that converts the case. I would understand if I specified 'PARSE UPPER ARG', but I am not.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
ARG is equivelent to PARSE UPPER ARG
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;a href=&quot;http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IKJ4A370/3.2?DT=20060626210253#SPTREF23&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;3.2 ARG&lt;/span&gt;&lt;/a&gt;&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;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;
ARG retrieves the argument strings provided to a program or internal routine and assigns them to variables. It is a short form of the instruction: 
&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;&amp;gt;&amp;gt;__PARSE UPPER ARG_ _______________ _;__&amp;gt;&amp;lt;
&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;|_template_list_|&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&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;Kevin
&lt;br /&gt;

&lt;br /&gt;
&quot;Life is hard. It's even harder when you're stupid.&quot;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>superk</dc:creator>
<dc:subject>CLIST &amp; REXX</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228669#228669" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228675</comments>
</item>
<item>
<title>CLIST &amp; REXX :: RE: Rexx passing mixed case</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228674#228674</link>
<pubDate>Thu, 18 Mar 2010 14:04:33 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228674#228674</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=80237&quot; target=&quot;_blank&quot;&gt;PeterHolland&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 7:34 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Valyk,
&lt;br /&gt;

&lt;br /&gt;
&quot;lit&quot; is the first parameter and &quot;value&quot; the second.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>PeterHolland</dc:creator>
<dc:subject>CLIST &amp; REXX</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228669#228669" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228674</comments>
</item>
<item>
<title>CICS :: RE: CICS Short On Storage issue</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228673#228673</link>
<pubDate>Thu, 18 Mar 2010 13:59:59 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228673#228673</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: CICS Short On Storage issue&lt;br /&gt;
Posted: Thu Mar 18, 2010 7:29 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Is the SOS occurring on below-the-line or above-the-line DSA?
&lt;br /&gt;

&lt;br /&gt;
Issue a CEMT INQUIRE SYSTEM (if you're authorised) and capture the values set to DSAlimit (below-the-line) and EDsalimit (above-the-line).
&lt;br /&gt;

&lt;br /&gt;
I have to assume that this SOS is occurring on User-DSA?
&lt;br /&gt;

&lt;br /&gt;
Please post the DFH message and exact verbiage associated with the SOS condition and someone may be able to assist further.
&lt;br /&gt;

&lt;br /&gt;
However, there's no magic bullet in determining SOS. It takes research.
&lt;br /&gt;

&lt;br /&gt;
If you have TMON for CICS, you may be able to find the culprit transaction/program.
&lt;br /&gt;

&lt;br /&gt;
Ask your CICS Sysprog and/or Tech Support folks for assistance. 
&lt;br /&gt;

&lt;br /&gt;
Bill&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Bill O'Boyle</dc:creator>
<dc:subject>CICS</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228638#228638" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228673</comments>
</item>
<item>
<title>CLIST &amp; REXX :: RE: Rexx passing mixed case</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228672#228672</link>
<pubDate>Thu, 18 Mar 2010 13:57:16 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228672#228672</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=61999&quot; target=&quot;_blank&quot;&gt;valyk&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 7:27 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Thanks Peter, but I am not sure what this is doing. What is the purpose of 'lit' and how does 'PARSE ARG VALUE VALUE' retain mixed case?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>valyk</dc:creator>
<dc:subject>CLIST &amp; REXX</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228669#228669" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228672</comments>
</item>
<item>
<title>JCL :: RE: How to improve the performance of SYNCSORT</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228671#228671</link>
<pubDate>Thu, 18 Mar 2010 13:49:09 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228671#228671</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=19682&quot; target=&quot;_blank&quot;&gt;Anuj Dhawan&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 7:19 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
As I said earlier - Tuning SyncSort is usually application specific and to get you better replies we'll be intrested to see &quot;B&quot; messages, which you have not shown yet. Having said that, your best bet is to get in contact with Alissa (Margulies) with those details on her e-mail ID.&lt;br /&gt;_________________&lt;br /&gt;Success is a science; if you have the conditions, you get the result.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Anuj Dhawan</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=227848#227848" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228671</comments>
</item>
<item>
<title>CLIST &amp; REXX :: RE: Rexx passing mixed case</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228670#228670</link>
<pubDate>Thu, 18 Mar 2010 13:35:47 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228670#228670</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=80237&quot; target=&quot;_blank&quot;&gt;PeterHolland&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 7:05 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Yes, that happened to me too once.
&lt;br /&gt;
I solved it in the following way :
&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;
Substitute&amp;#58;
&lt;br /&gt;
&amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Arg lit value
&lt;br /&gt;
&amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Parse Arg value value /* this is to keep mixed case */
&lt;br /&gt;

&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>PeterHolland</dc:creator>
<dc:subject>CLIST &amp; REXX</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228669#228669" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228670</comments>
</item>
<item>
<title>CLIST &amp; REXX :: Rexx passing mixed case</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228669#228669</link>
<pubDate>Thu, 18 Mar 2010 13:29:43 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228669#228669</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=61999&quot; target=&quot;_blank&quot;&gt;valyk&lt;/a&gt;&lt;br /&gt;
Subject: Rexx passing mixed case&lt;br /&gt;
Posted: Thu Mar 18, 2010 6:59 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I am passing variables between several external programs and my variables are being converted to upper case.
&lt;br /&gt;

&lt;br /&gt;
Here is the calling program:
&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;DISPLAY_SCREEN&amp;#58;
&lt;br /&gt;
&amp;nbsp; CALL DRAW_PARMS
&lt;br /&gt;
&amp;nbsp; CALL SCRNDSPL PARMS
&lt;br /&gt;
RETURN
&lt;br /&gt;

&lt;br /&gt;
DRAW_PARMS&amp;#58;
&lt;br /&gt;
&amp;nbsp; PARMS = ''
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; ADDRESS TSO
&lt;br /&gt;
&amp;nbsp; &amp;quot;ALLOC DATASET&amp;#40;CURR_PDS&amp;#40;&amp;quot;SCRNGLBL&amp;quot;&amp;#41;'&amp;#41; FILE&amp;#40;PARM&amp;#41; SHR&amp;quot;
&lt;br /&gt;
&amp;nbsp; 'EXECIO * DISKR PARM &amp;#40;FINIS STEM PARMS.'
&lt;br /&gt;
&amp;nbsp; 'FREE FILE&amp;#40;PARM&amp;#41;'
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; DO I = 1 TO PARMS.0
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; PARM = SPACE&amp;#40;SUBSTR&amp;#40;PARMS.I,1,12&amp;#41;&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; IF PARM &amp;gt; '' THEN
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; INTERPRET &amp;quot;PARMS = PARMS PARM'='&amp;quot;PARM
&lt;br /&gt;
&amp;nbsp; END
&lt;br /&gt;
RETURN&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Called program:
&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;ARG PARMS
&lt;br /&gt;
CALL PARSE_PARMS PARMS
&lt;br /&gt;

&lt;br /&gt;
PARSE_PARMS&amp;#58;
&lt;br /&gt;
&amp;nbsp; PARMS = ARG&amp;#40;1&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; DO FOREVER
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; IF PARMS &amp;gt; '' THEN DO
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; PARSE VAR PARMS PARM PARMS
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; PARSE VAR PARM PARM_NAME '=' PARM_VAL .
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; INTERPRET PARM_NAME &amp;quot;='&amp;quot;PARM_VAL&amp;quot;'&amp;quot;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; END
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; ELSE
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; LEAVE
&lt;br /&gt;
&amp;nbsp; END
&lt;br /&gt;
RETURN&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
If I add a trace entry at the top of the called program, I immediately see the contents of the variables converted to uppercase. I noticed when I return back to the calling program, and parse the RESULT variable, the mixed case is retained. It appears that it is only the ARG function that converts the case. I would understand if I specified 'PARSE UPPER ARG', but I am not.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>valyk</dc:creator>
<dc:subject>CLIST &amp; REXX</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228669#228669" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228669</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: RE: Copy two different length files</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228668#228668</link>
<pubDate>Thu, 18 Mar 2010 13:05:39 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228668#228668</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=5438&quot; target=&quot;_blank&quot;&gt;shr_amar&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 6:35 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Please ignore previous post that has some errors:-
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
I have input1 file FB,RL=5 
&lt;br /&gt;
RECORD in input file are like this 
&lt;br /&gt;

&lt;br /&gt;
ABCDE 
&lt;br /&gt;
SSSSS 
&lt;br /&gt;
DDDDD 
&lt;br /&gt;
NNNNN 
&lt;br /&gt;

&lt;br /&gt;
I have second file FB,RL=10 
&lt;br /&gt;
Which have RECORD 
&lt;br /&gt;

&lt;br /&gt;
RRRRRRRRRR 
&lt;br /&gt;
TTTTTTTTTTT 
&lt;br /&gt;

&lt;br /&gt;
I want to copy all records of Input1 &amp;amp; input2 file to a variable length file of RL=14 . so the output will be 
&lt;br /&gt;

&lt;br /&gt;
ABCDE 
&lt;br /&gt;
SSSSS 
&lt;br /&gt;
DDDDD 
&lt;br /&gt;
NNNNN 
&lt;br /&gt;
RRRRRRRRRR 
&lt;br /&gt;
TTTTTTTTTTT&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>shr_amar</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228665#228665" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228668</comments>
</item>
<item>
<title>JCL :: RE: Dynamic file allocation in JCL</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228667#228667</link>
<pubDate>Thu, 18 Mar 2010 13:04:34 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228667#228667</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=1924&quot; target=&quot;_blank&quot;&gt;superk&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: Dynamic file allocation in JCL&lt;br /&gt;
Posted: Thu Mar 18, 2010 6:34 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I don't know. I guess however your site handles these situations and what rules/standards you have to abide by.
&lt;br /&gt;

&lt;br /&gt;
You could use the &lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;a href=&quot;http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2B670/18.0?SHELF=EZ2ZO10J&amp;amp;DT=20070427231644&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;INCLUDE&lt;/a&gt;&lt;/span&gt; statement. You could dynamically build and submit a job, either in its entirety or partially. Does your job scheduling system allow you to bring in external files to your application and then include them as part of the job stream?&lt;br /&gt;_________________&lt;br /&gt;Kevin
&lt;br /&gt;

&lt;br /&gt;
&quot;Life is hard. It's even harder when you're stupid.&quot;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>superk</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228635#228635" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228667</comments>
</item>
<item>
<title>IMS DB/DC :: RE: GN without SSA</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228666#228666</link>
<pubDate>Thu, 18 Mar 2010 12:59:07 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228666#228666</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=38520&quot; target=&quot;_blank&quot;&gt;manikawnth&lt;/a&gt;&lt;br /&gt;
Subject: @Tapas&lt;br /&gt;
Posted: Thu Mar 18, 2010 6:29 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi Tapas,
&lt;br /&gt;
For your doubt regarding my second reply, Sandy gave a clear explanation in her first post&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>manikawnth</dc:creator>
<dc:subject>IMS DB/DC</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228431#228431" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228666</comments>
</item>
<item>
<title>DFSORT/ICETOOL :: Copy two different length files</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228665#228665</link>
<pubDate>Thu, 18 Mar 2010 12:52:15 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228665#228665</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=5438&quot; target=&quot;_blank&quot;&gt;shr_amar&lt;/a&gt;&lt;br /&gt;
Subject: Copy two different length files&lt;br /&gt;
Posted: Thu Mar 18, 2010 6:22 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I have input1 file FB,RL=5
&lt;br /&gt;
RECORD in input file are like this 
&lt;br /&gt;

&lt;br /&gt;
ABCDE
&lt;br /&gt;
SSSSS
&lt;br /&gt;
DDDDD
&lt;br /&gt;
NNNNN
&lt;br /&gt;

&lt;br /&gt;
I have second file FB,RL=10
&lt;br /&gt;
Which have RECORD 
&lt;br /&gt;

&lt;br /&gt;
RRRRRRRRRR
&lt;br /&gt;
TTTTTTTTTTT
&lt;br /&gt;

&lt;br /&gt;
I want to copy all records of Input1 &amp;amp;  input2 file to a variable length file of RL=4 . so the output will be
&lt;br /&gt;
ABCDE
&lt;br /&gt;
SSSSS
&lt;br /&gt;
DDDDD
&lt;br /&gt;
NNNNN
&lt;br /&gt;
ABCDE
&lt;br /&gt;
SSSSS
&lt;br /&gt;
DDDDD
&lt;br /&gt;
NNNNN
&lt;br /&gt;
RRRRRRRRRR
&lt;br /&gt;
TTTTTTTTTTT&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>shr_amar</dc:creator>
<dc:subject>DFSORT/ICETOOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228665#228665" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228665</comments>
</item>
<item>
<title>JCL :: RE: Dynamic file allocation in JCL</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228664#228664</link>
<pubDate>Thu, 18 Mar 2010 12:48:11 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228664#228664</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=48555&quot; target=&quot;_blank&quot;&gt;cvishu&lt;/a&gt;&lt;br /&gt;
Subject: Re: Reply to: Dynamic file allocation in JCL&lt;br /&gt;
Posted: Thu Mar 18, 2010 6:18 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;superk wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt; They just need to be added or included to a job and then that job can be submitted.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Yes i want to know how to combine them.
&lt;br /&gt;
How could the content of a flat file(output2) be given as the output dataset for a Sort step ?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>cvishu</dc:creator>
<dc:subject>JCL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228635#228635" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228664</comments>
</item>
<item>
<title>CICS :: RE: CICS Short On Storage issue</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228663#228663</link>
<pubDate>Thu, 18 Mar 2010 12:41:18 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228663#228663</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=41334&quot; target=&quot;_blank&quot;&gt;simmimahajan&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: CICS Short On Storage issue&lt;br /&gt;
Posted: Thu Mar 18, 2010 6:11 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Thanks Sure, trying to gather more information on this.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>simmimahajan</dc:creator>
<dc:subject>CICS</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228638#228638" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228663</comments>
</item>
<item>
<title>IMS DB/DC :: RE: Question on Multiple DB Positioning</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228662#228662</link>
<pubDate>Thu, 18 Mar 2010 12:40:19 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228662#228662</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=45659&quot; target=&quot;_blank&quot;&gt;Sandy Zimmer&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 6:10 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Take a look at this post...
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://ibmmainframes.com/viewtopic.php?p=228661#228661&quot; target=&quot;_blank&quot;&gt;http://ibmmainframes.com/viewtopic.php?p=228661#228661&lt;/a&gt;&lt;br /&gt;_________________&lt;br /&gt;SandyZ&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sandy Zimmer</dc:creator>
<dc:subject>IMS DB/DC</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228370#228370" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228662</comments>
</item>
<item>
<title>IMS DB/DC :: RE: GN without SSA</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228661#228661</link>
<pubDate>Thu, 18 Mar 2010 12:39:41 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228661#228661</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=45659&quot; target=&quot;_blank&quot;&gt;Sandy Zimmer&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 6:09 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Take a look at the structure in this post about multiple positioning:
&lt;br /&gt;
&lt;a href=&quot;http://ibmmainframes.com/viewtopic.php?t=47450&quot; target=&quot;_blank&quot;&gt;http://ibmmainframes.com/viewtopic.php?t=47450&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
You are reading all segment7 - 2 levels down from the root.  You are looking for a specific value in segment7.  You are using a GN with 1 unqualified SSA - for segment7.  You look at the field value in segment7 and it matches your agenda.  Now you need to set a flag in segment1.  
&lt;br /&gt;

&lt;br /&gt;
The first thing you do is look at your key feedback area to get the key value for your root.  &lt;span style=&quot;font-weight: bold&quot;&gt;This is a great agenda for mulitple positioning.&lt;/span&gt;  You use that key value to issue a qualified GU for the root - segment1 - using your second PCB.  You are still positioned on your first PCB - not losing position - and you have been able to update segment1 up the chain.&lt;br /&gt;_________________&lt;br /&gt;SandyZ&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sandy Zimmer</dc:creator>
<dc:subject>IMS DB/DC</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228431#228431" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228661</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: File comparison in cobol</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228660#228660</link>
<pubDate>Thu, 18 Mar 2010 12:36:41 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228660#228660</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: Thu Mar 18, 2010 6:06 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;Kindly give us the solution to implement N:N logic? &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;Unless you are willing to pay the going rates (and 1000 U.S. dollars per day is not uncommon), please do not ask for code.  People who respond here are paid for their professional work product, which is what you want when you ask for code.
&lt;br /&gt;

&lt;br /&gt;
Besides, this is a HELP forum, not a DO-YOUR-JOB-FOR-YOU forum.  What have you coded so far?&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=228655#228655" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228660</comments>
</item>
<item>
<title>CICS :: RE: Start and Start attach</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228659#228659</link>
<pubDate>Thu, 18 Mar 2010 12:34:11 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228659#228659</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: Thu Mar 18, 2010 6:04 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
So you see two different commands in the CICS &lt;span style=&quot;font-style: italic&quot;&gt;Language Reference&lt;/span&gt; manual, and you believe they are the same?  Exactly why would you have such a deluded concept?  If you read the descriptions of the commands in the manual (link at the top of the page), you will rapidly see the differences in them.&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>CICS</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228650#228650" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228659</comments>
</item>
<item>
<title>JCL :: RE: Parsing %%variables from a member</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228658#228658</link>
<pubDate>Thu, 18 Mar 2010 12:33:18 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228658#228658</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: Thu Mar 18, 2010 6:03 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
ensure the member with the variables is generated correctly.
&lt;br /&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=228658</comments>
</item>
<item>
<title>CLIST &amp; REXX :: RE: converting to numeric values in rexx</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228657#228657</link>
<pubDate>Thu, 18 Mar 2010 12:31:03 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228657#228657</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=1924&quot; target=&quot;_blank&quot;&gt;superk&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: converting to numeric values in rexx&lt;br /&gt;
Posted: Thu Mar 18, 2010 6:01 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
SPACE and TRANSLATE are a few of of those key REXX functions along with PARSE. You should learn them well as you will use them a lot.&lt;br /&gt;_________________&lt;br /&gt;Kevin
&lt;br /&gt;

&lt;br /&gt;
&quot;Life is hard. It's even harder when you're stupid.&quot;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>superk</dc:creator>
<dc:subject>CLIST &amp; REXX</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228591#228591" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228657</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: Getting the physical name of a file at runtime.</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228656#228656</link>
<pubDate>Thu, 18 Mar 2010 12:29:59 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228656#228656</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: Thu Mar 18, 2010 5:59 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
This has been discussed a number of times.  Search the 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=228646#228646" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228656</comments>
</item>
<item>
<title>Mainframe COBOL :: File comparison in cobol</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228655#228655</link>
<pubDate>Thu, 18 Mar 2010 12:29:07 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228655#228655</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=24352&quot; target=&quot;_blank&quot;&gt;kalyan_lc5&lt;/a&gt;&lt;br /&gt;
Subject: File comparison in cobol&lt;br /&gt;
Posted: Thu Mar 18, 2010 5:59 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
There are two flat input files present in the program. The program is about comparison of keys of both the files. The requirement is both the files can have duplicate key values. How do I go ahead with the comparison of keys if the scenario is N:N ?
&lt;br /&gt;

&lt;br /&gt;
Kindly give us the solution to implement N:N logic?
&lt;br /&gt;

&lt;br /&gt;
Kalyan&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>kalyan_lc5</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=228655</comments>
</item>
<item>
<title>IMS DB/DC :: RE: GN without SSA</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228654#228654</link>
<pubDate>Thu, 18 Mar 2010 12:28:41 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228654#228654</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=45659&quot; target=&quot;_blank&quot;&gt;Sandy Zimmer&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 5:58 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
A GN call without ANY SSA will read every single segment in the database - all levels - all occurences.  Your key feedback area will contain the concatenated key values of the root down.  You will never get a GE.  If you do not check for GB, you will start over at the beginning of the database and read and read and read.  
&lt;br /&gt;

&lt;br /&gt;
If you use an unqualified SSA for a specific segment type, you will read every segment until you get a GB.  If there are no segments for that type, you will get a GE.  
&lt;br /&gt;

&lt;br /&gt;
You do not need the parent of your specified segment type.  If you need to see the key values of the parents up the chain, you can take a look at the key feedback area in your PCB.  For instance, you are looking for something in a segment 3 levels down.  Once you determine that you have a segment with that value - look at the key feedback area for the parent key values.&lt;br /&gt;_________________&lt;br /&gt;SandyZ&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Sandy Zimmer</dc:creator>
<dc:subject>IMS DB/DC</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228431#228431" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228654</comments>
</item>
<item>
<title>JCL :: RE: Parsing %%variables from a member</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228653#228653</link>
<pubDate>Thu, 18 Mar 2010 12:28:35 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228653#228653</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=84006&quot; target=&quot;_blank&quot;&gt;Xavier Miret&lt;/a&gt;&lt;br /&gt;

Posted: Thu Mar 18, 2010 5:58 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
Mmm... now that you mention it... I could modify the member within the JCL once it has been submitted, but I can't modify it by hand. 
&lt;br /&gt;

&lt;br /&gt;
That is because the member with the variables is generated dinamically. We know which variables will it contain, but we don't know which values are assigned to them until we are executing the JCL.
&lt;br /&gt;

&lt;br /&gt;
The whole process:
&lt;br /&gt;

&lt;br /&gt;
1. Application takes parameters from a web page introduced by a user (variable=value)
&lt;br /&gt;
2. Application makes a member with those parameters.
&lt;br /&gt;
    %%variable1=value1
&lt;br /&gt;
    %%variable2=value2
&lt;br /&gt;
    ...
&lt;br /&gt;
3. Application decides which JCL template needs and generates a JOB to planify.
&lt;br /&gt;
4. Application planifies the JOB.
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
I don't have access to most of the application code. I can only modify the JCL template. In which I decide which steps to execute, and where to place the variables. 
&lt;br /&gt;

&lt;br /&gt;
But when I reference any variable with a value with white spaces, for example a description, it truncs its value to the first white space, so the JCL works with a truncated value.
&lt;br /&gt;

&lt;br /&gt;
Thx,
&lt;br /&gt;

&lt;br /&gt;
Xavi&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Xavier Miret</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=228653</comments>
</item>
<item>
<title>Mainframe COBOL :: RE: Getting the physical name of a file at runtime.</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228652#228652</link>
<pubDate>Thu, 18 Mar 2010 12:27:47 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228652#228652</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=1924&quot; target=&quot;_blank&quot;&gt;superk&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: Getting the physical name of a file at runtime.&lt;br /&gt;
Posted: Thu Mar 18, 2010 5:57 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Please search for other existing topics since this has been covered before. 
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;text-decoration: underline&quot;&gt;&lt;a href=&quot;http://www.ibmmainframes.com/viewtopic.php?t=31762&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Here's one to start with&lt;/a&gt;&lt;/span&gt;.&lt;br /&gt;_________________&lt;br /&gt;Kevin
&lt;br /&gt;

&lt;br /&gt;
&quot;Life is hard. It's even harder when you're stupid.&quot;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>superk</dc:creator>
<dc:subject>Mainframe COBOL</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228646#228646" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228652</comments>
</item>
<item>
<title>CICS :: RE: CICS Short On Storage issue</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228651#228651</link>
<pubDate>Thu, 18 Mar 2010 12:25:54 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228651#228651</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: Thu Mar 18, 2010 5:55 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Short answer (which is always true for S-O-S problems): figure out what's eating up the storage and change the program(s) to resolve it -- or add more memory to the region.
&lt;br /&gt;

&lt;br /&gt;
Run a STAT in the region and find out which storage pool is having the problem.  If it's one of the above-the-line pools like ECSA, and you can increase the memory to that pool, that could be a quick fix.  If it's one of the below-the-line pools, and the problem just recently started, you need to look at application program changes recently and identify which program(s) are using up the storage.  Getting the application to run above the line is often the best way to resolve below-the-line S-O-S issues.
&lt;br /&gt;

&lt;br /&gt;
If someone recently made a region change (say increasing max tasks from 50 to 250, for example), without changing the memory allocation for the region appropriately, that could also cause S-O-S issues.
&lt;br /&gt;

&lt;br /&gt;
So it could be an application OR a system issue -- without doing investigation on site, you cannot really say which, nor how to fix it.  But you definitely don't want S-O-S situations to continue as they have big impacts on response times.&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>CICS</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228638#228638" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228651</comments>
</item>
<item>
<title>CICS :: Start and Start attach</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228650#228650</link>
<pubDate>Thu, 18 Mar 2010 12:23:25 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228650#228650</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;
Subject: Start and Start attach&lt;br /&gt;
Posted: Thu Mar 18, 2010 5:53 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Is there any difference between start and start attach in CICS.&lt;br /&gt;_________________&lt;br /&gt;jeba&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>d_sarlie</dc:creator>
<dc:subject>CICS</dc:subject>
<annotate:reference rdf:resource="http://ibmmainframes.com/viewtopic.php?p=228650#228650" />
<comments>http://ibmmainframes.com/posting.php?mode=quote&amp;p=228650</comments>
</item>
<item>
<title>SMS &amp; VSAM :: RE: Increase the version of V00 in GDG</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228649#228649</link>
<pubDate>Thu, 18 Mar 2010 12:23:10 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228649#228649</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=1924&quot; target=&quot;_blank&quot;&gt;superk&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: V00 in GDG&lt;br /&gt;
Posted: Thu Mar 18, 2010 5:53 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Yes, just catalog a new dataset:
&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;
//STEPXXXX EXEC PGM=ICEGENER
&lt;br /&gt;
//SYSUT1&amp;nbsp; &amp;nbsp;DD&amp;nbsp; &amp;nbsp;DSN=XK.LM.S010F01.G0147V00,DISP=SHR
&lt;br /&gt;
//SYSUT2&amp;nbsp; &amp;nbsp;DD&amp;nbsp; &amp;nbsp;DSN=XK.LM.S010F01.G0147V01,
&lt;br /&gt;
//&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DISP=&amp;#40;,CATLG,DELETE&amp;#41;,UNIT=....
&lt;br /&gt;
//SYSPRINT DD&amp;nbsp; &amp;nbsp;SYSOUT=*
&lt;br /&gt;
//SYSIN&amp;nbsp; &amp;nbsp; DD&amp;nbsp; &amp;nbsp;DUMMY
&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;
after which the existing GDS entry XK.LM.S010F01.G0147V00 will be rolled off and uncataloged and replaced with the new entry XK.LM.S010F01.G0147V01.&lt;br /&gt;_________________&lt;br /&gt;Kevin
&lt;br /&gt;

&lt;br /&gt;
&quot;Life is hard. It's even harder when you're stupid.&quot;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>superk</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=228649</comments>
</item>
<item>
<title>SMS &amp; VSAM :: Increase the version of V00 in GDG</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228648#228648</link>
<pubDate>Thu, 18 Mar 2010 12:18:59 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228648#228648</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;
Subject: Increase the version of V00 in GDG&lt;br /&gt;
Posted: Thu Mar 18, 2010 5:48 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
Is that possible for us to increase the version of V00
&lt;br /&gt;

&lt;br /&gt;
XK.LM.S010F01.G0147V00
&lt;br /&gt;

&lt;br /&gt;
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>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=228648</comments>
</item>
<item>
<title>TSO/ISPF :: RE: ISPF FILEXFER Problem</title>
<link>http://ibmmainframes.com/viewtopic.php?p=228647#228647</link>
<pubDate>Thu, 18 Mar 2010 12:17:55 GMT</pubDate>
<guid isPermaLink="true">http://ibmmainframes.com/viewtopic.php?p=228647#228647</guid>
<description>Author: &lt;a href=&quot;http://ibmmainframes.com/profile.php?mode=viewprofile&amp;u=1924&quot; target=&quot;_blank&quot;&gt;superk&lt;/a&gt;&lt;br /&gt;
Subject: Reply to: FILEXFER service failed because there is no connec&lt;br /&gt;
Posted: Thu Mar 18, 2010 5:47 pm (GMT 5.5)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
krishna, please post the EXACT code you're executing as well as the results of a TRACE so we all can see. Also, we would expect that you've already successfully tested the connections out manually before coding a script and posting here.&lt;br /&gt;_________________&lt;br /&gt;Kevin
&lt;br /&gt;

&lt;br /&gt;
&quot;Life is hard. It's even harder when you're stupid.&quot;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>superk</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=228647</comments>
</item>
</channel>
</rss>

<!-- Page generation time: 0.0704s  - Memory Usage: 2.248 Mb  - GZIP enabled -->