 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; COBOL debugging</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/datacenter/cobol-debugging/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Tue, 21 May 2013 15:36:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Justify right in COBOL</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/justify-right/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/justify-right/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 16:33:56 +0000</pubDate>
		<dc:creator>Tm2009</dc:creator>
				<category><![CDATA[COBOL debugging]]></category>
		<category><![CDATA[COBOL/400]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have data where the format has been changed slightly by the carrier and now this change is causing my job to abend. The last page number of each file reads ex.&#8217;160 OF 160&#8242; however, the new format must read &#8217;160 of 160&#8242; which means that the last page number needs to justfied to the [...]]]></description>
				<content:encoded><![CDATA[<p>I have data where the format has been changed slightly by the carrier and now this change is causing my job to abend. The last page number of each file reads ex.&#8217;160 OF 160&#8242; however, the new format must read &#8217;160 of 160&#8242; which means that the last page number needs to justfied to the right to pos 68. This change only needs to be made at the end if the file. How do I accomplish this? Should there be a JUSTIFY command in the code below that will do this? IF END-OF-FILE-2 (RESPONSE-PAGE-A EQUAL RESPONSE-PAGE-B AND RESPONSE-OF EQUAL &#8216; OF &#8216;) SET END-OF-MESSAGES TO TRUE GO TO 0300-EXIT.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/justify-right/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Debug ILE Cobol 400</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/debug-ile-cobol-400/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/debug-ile-cobol-400/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 10:41:57 +0000</pubDate>
		<dc:creator>GalB</dc:creator>
				<category><![CDATA[COBOL debugging]]></category>
		<category><![CDATA[COBOL/400]]></category>
		<category><![CDATA[ILE COBOL/400]]></category>
		<category><![CDATA[RPG ILE]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[How can I display (Eval) subset of a filed while debugging ILE Cobol program. How can I view the content of a field from specified position and lenght. I know how to review the content for a specified lenght, but can&#8217;t find a way to view part of the string from position 256 for example.]]></description>
				<content:encoded><![CDATA[<p>How can I display (Eval) subset of a filed while debugging ILE Cobol program. How can I view the content of a field from specified position and lenght. I know how to review the content for a specified lenght, but can&#8217;t find a way to view part of the string from position 256 for example.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/debug-ile-cobol-400/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ERROR MESSAGE</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-message-6/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/error-message-6/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 10:27:50 +0000</pubDate>
		<dc:creator>EMMAX</dc:creator>
				<category><![CDATA[COBOL]]></category>
		<category><![CDATA[COBOL debugging]]></category>
		<category><![CDATA[COBOL ERROR MESSAGE]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello, I AM A BINGINNER IN COBOL PROGRAM: MY FIRST PROGRAME NOT COMPILING WITH THIS ERROR MESSEAGE PLEASE PUT ME THROUTH 000026 HELLO 15 110 No initial SECTION. sourse Code Attached below IDENTIFICATION DIVISION. 000002 PROGRAM-ID. PROGRAM-HELLO. 000003 ENVIRONMENT DIVISION. 000004 CONFIGURATION SECTION. 000005 SPECIAL-NAMES. 000006 DATE IS &#8220;S-&#8221;. 000007* A- American, E- European. 000008 [...]]]></description>
				<content:encoded><![CDATA[<p>Hello,</p>
<p>I AM A BINGINNER IN COBOL PROGRAM:  MY FIRST PROGRAME NOT COMPILING WITH THIS ERROR MESSEAGE PLEASE PUT ME THROUTH</p>
<p>000026 HELLO 15 110 No initial SECTION.</p>
<p>sourse Code Attached below</p>
<p>IDENTIFICATION DIVISION.<br />
000002 PROGRAM-ID. PROGRAM-HELLO.<br />
000003 ENVIRONMENT DIVISION.<br />
000004 CONFIGURATION SECTION.<br />
000005 SPECIAL-NAMES.<br />
000006     DATE IS &#8220;S-&#8221;.<br />
000007*    A- American, E- European.<br />
000008 INPUT-OUTPUT SECTION.<br />
000009 FILE-CONTROL.<br />
000010<br />
000011 DATA DIVISION.<br />
000012 FILE SECTION.<br />
000013<br />
000014<br />
000015<br />
000016 LINKAGE SECTION.<br />
000017 SCREEN SECTION.<br />
000018 PROCEDURE DIVISION.<br />
000019<br />
000020 PROGRAM-BEGIN.<br />
000021<br />
000022     DISPLAY &#8220;Hello World&#8221;.<br />
000023<br />
000024 PROGRAM-DONE.<br />
000025<br />
000026 MAIN-ROUTINE SECTION.<br />
000027 MAIN-ENTRY.<br />
000028<br />
000029     STOP RUN.<br />
�</p>
<p>thanks</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/error-message-6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DEBUG COBOL/400 PROGRAM</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/debug-cobol400-program/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/debug-cobol400-program/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 12:00:24 +0000</pubDate>
		<dc:creator>HarshaCheedella</dc:creator>
				<category><![CDATA[COBOL]]></category>
		<category><![CDATA[COBOL DEBUG]]></category>
		<category><![CDATA[COBOL debugging]]></category>
		<category><![CDATA[COBOL/400]]></category>
		<category><![CDATA[COBOL/400 Debugging]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Software Quality]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[PLEASE GUIDE ME HOW CAN DEBUG A COBOL/400 PROGRAM?]]></description>
				<content:encoded><![CDATA[<p>PLEASE GUIDE ME HOW CAN DEBUG A COBOL/400 PROGRAM?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/debug-cobol400-program/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Debugging a Copybook</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/debugging-a-copy-book/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/debugging-a-copy-book/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 09:36:18 +0000</pubDate>
		<dc:creator>Rpgle</dc:creator>
				<category><![CDATA[COBOL debugging]]></category>
		<category><![CDATA[Copybook]]></category>
		<category><![CDATA[Debugging]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Is there any way where we can debug a copy book. to know whether the functionality we kept in copy book is working fine.]]></description>
				<content:encoded><![CDATA[<p>Is there any way where we can debug a copy book. to know whether the functionality we kept in copy book is working fine.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/debugging-a-copy-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS/400 Debugging</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-debugging/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/as400-debugging/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 06:11:44 +0000</pubDate>
		<dc:creator>Who</dc:creator>
				<category><![CDATA[AS/400 debugging]]></category>
		<category><![CDATA[AS/400 development]]></category>
		<category><![CDATA[COBOL debugging]]></category>
		<category><![CDATA[COBOL/400]]></category>
		<category><![CDATA[ISDB debugger]]></category>
		<category><![CDATA[Source Interactive DeBug utility]]></category>
		<category><![CDATA[STRISDB]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi I am using STRISDB to debug my COBOL/400 progra. My object and source are in same libary. But, the debuggin is not working well. It&#8217;s not executing all the lines and it&#8217;s executing both the IF statement and else statements. It&#8217;s behaving mysterically. Could some one explain why this type of behaviour can happen [...]]]></description>
				<content:encoded><![CDATA[<p>Hi</p>
<p>I am using STRISDB to debug my COBOL/400 progra. My object and source are in same libary. But, the debuggin is not working well. It&#8217;s not executing all the lines and it&#8217;s executing both the IF statement and else statements. It&#8217;s behaving mysterically. Could some one explain why this type of behaviour can happen with debugging. Thanks in advance.</p>
<p>Babu</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/as400-debugging/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SOC4 with reason code 11</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/soc4-with-reason-code-11/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/soc4-with-reason-code-11/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 15:31:09 +0000</pubDate>
		<dc:creator>A972000</dc:creator>
				<category><![CDATA[COBOL]]></category>
		<category><![CDATA[COBOL debugging]]></category>
		<category><![CDATA[SOC4 error]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[how can identify which line in cobol cause the index error if the program has multiple array table.]]></description>
				<content:encoded><![CDATA[<p>how can identify which line in cobol cause the index error if the program has multiple array table.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/soc4-with-reason-code-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I need help Debugging a Cobol CICS ADABAS application</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/i-need-help-debugging-a-cobol-cics-adabas-application/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/i-need-help-debugging-a-cobol-cics-adabas-application/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 15:06:23 +0000</pubDate>
		<dc:creator>Cmcl95</dc:creator>
				<category><![CDATA[ADABAS]]></category>
		<category><![CDATA[CICS]]></category>
		<category><![CDATA[COBOL]]></category>
		<category><![CDATA[COBOL debugging]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Debugging a Cobol CICS ADABAS application. The App is very OLD and the COBOL Source is being updated to LE COBIII but the client (LOCAL GOV) doesn&#8217;t want to use CA intertest and the ADABAS Version is out of support v7.1 as of 2006. We have limited experience here in ADABAS so any help would [...]]]></description>
				<content:encoded><![CDATA[<p>Debugging a Cobol CICS ADABAS application. The App is very OLD and the COBOL Source is being updated to LE COBIII but the client (LOCAL GOV) doesn&#8217;t want to use CA intertest and the ADABAS Version is out of support v7.1 as of 2006. We have limited experience here in ADABAS so any help would be appreciated. A debuggin tool  recomendation would be great</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/i-need-help-debugging-a-cobol-cics-adabas-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>COBOL Debug</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cobol-debug/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/cobol-debug/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 19:49:40 +0000</pubDate>
		<dc:creator>shazam</dc:creator>
				<category><![CDATA[COBOL]]></category>
		<category><![CDATA[COBOL debugging]]></category>
		<category><![CDATA[Debugging]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Can d COBOL program be debugged like RPG and if so how do I do it. Thanks]]></description>
				<content:encoded><![CDATA[<p>Can d COBOL program be debugged like RPG and if so how do I do it. Thanks</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/cobol-debug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/30 queries in 0.034 seconds using memcached
Object Caching 855/1003 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-21 15:40:21 -->