<?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; iSeries Cobol programming</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/iseries-cobol-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Wed, 19 Jun 2013 11:38:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>QSECURITY</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/qsecurity/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/qsecurity/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 08:03:56 +0000</pubDate>
		<dc:creator>Jedlasquite</dc:creator>
				<category><![CDATA[iSeries]]></category>
		<category><![CDATA[iSeries applications]]></category>
		<category><![CDATA[iSeries Cobol programming]]></category>
		<category><![CDATA[iSeries data center]]></category>
		<category><![CDATA[iSeries RPG programming]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Answer by MTidmarsh]]></description>
				<content:encoded><![CDATA[New Answer by MTidmarsh]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/qsecurity/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Sort a table in COBOL on the Output Side</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sort-a-table-in-cobol-on-the-output-side/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/sort-a-table-in-cobol-on-the-output-side/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 21:38:37 +0000</pubDate>
		<dc:creator>Pixieprogrammer</dc:creator>
				<category><![CDATA[COBOL]]></category>
		<category><![CDATA[COBOL Programs]]></category>
		<category><![CDATA[ILE COBOL]]></category>
		<category><![CDATA[iSeries Cobol programming]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Warning: I have limited knowledge of tables!  I have a COBOL program that calculates GPAs on the fly in the OUTPUT section of the program.  I have to store these on-the-fly GPAs in a table, and then sort them by school, grade level, GPA total, then student id.  I can load my table, but I am not sorting [...]]]></description>
				<content:encoded><![CDATA[<p>Warning: I have limited knowledge of tables!  <br/><br/> I have a COBOL program that calculates GPAs on the fly in the OUTPUT section of the program.  I have to store these on-the-fly GPAs in a table, and then sort them by school, grade level, GPA total, then student id.  I can load my table, but I am not sorting it.  <br/><br/> 01            GPATBL.                                         03          GPAENTRY          OCCURS 5000 TIMES                                           ASCENDING KEYS GPACT1 GPAGRD                                                         GPATOTAL                                     INDEXED   BY   GPA1   GPA2.     05        GPASCHOOL       PIC  X(04).                     05        GPAGRADE          PIC  X(02).                     05        GPATOTAL          PIC S9(01)V9999.                05        GPASTUDENT      PIC  X(10).                     05        GPANAME           PIC  X(33).                 <br/><br/> I load the table right after the GPA is calculated on-the-fly.  The program is already sorting the basic data that was gathered in the INPUT section (school, grade, student number, and name (GPA is calculated on-the-fly in the OUTPUT section).  So my table is being loaded by school, grade level, student id as the data is released from the sort record in the OUTPUT section.  <br/><br/> How do I sort my table by school, grade level, GPA, then student number?  I&#8217;ve looked at other forums and read about bubble sorts, sort verb, etc, but none of it makes any sense to me.  I have read two COBOL books with chapters on tables and sorting.  I think I need to do the &#8220;bubble sort&#8221;, but I dont know where to begin.  I follow the logic behind it (ascending key): store the 1st value, then check the 2nd value to see if its great than the 1st stored value, if it is, move 2nd value into table slot 2 else move 1st value to table slot 2 and store 2nd value in table slot 1.<br/><br/> Please help!! <br/><br/>  <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/sort-a-table-in-cobol-on-the-output-side/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Example of Cobol call to an SQL stored procedure</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/example-of-cobol-call-to-an-sql-stored-procedure/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/example-of-cobol-call-to-an-sql-stored-procedure/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 18:05:47 +0000</pubDate>
		<dc:creator>Dfe0722</dc:creator>
				<category><![CDATA[COBOL]]></category>
		<category><![CDATA[iSeries]]></category>
		<category><![CDATA[iSeries Cobol programming]]></category>
		<category><![CDATA[SQL stored procedures]]></category>
		<category><![CDATA[Stored Procedures]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am new to the iSeries and need to know how to use a Cobol program to call an SQL stored procedure. Someone has already created the stored procedure for me, but I am not sure how to call stored procedures in Cobol on the iSeries. The passed data looks like: FIND_CLIENT ( IN LastName [...]]]></description>
				<content:encoded><![CDATA[<p>I am new to the iSeries and need to know how to use a Cobol program to call an SQL stored procedure. Someone has already created the stored procedure for me, but I am not sure how to call stored procedures in Cobol on the iSeries. The passed data looks like: FIND_CLIENT ( IN LastName CHAR(35), <br/><br/> IN FirstName CHAR(25), <br/><br/> IN DateOfBirth DATE, <br/><br/> IN RoleName CHAR(20), <br/><br/> IN AreaCode INTEGER, <br/><br/> IN PhoneNumber INTEGER, <br/><br/> IN Extension INTEGER, <br/><br/> IN Address1 CHAR(55), <br/><br/> IN Address2 CHAR(55), <br/><br/> IN City CHAR(30), <br/><br/> IN State CHAR(2), <br/><br/> IN ZipCode INTEGER, <br/><br/> IN ZipSuffixCode INTEGER, <br/><br/> OUT ClientNumber INTEGER ) <br/><br/>  <br/><br/> I could use examples of what needs to be included in the program and how to call the procedure.<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/example-of-cobol-call-to-an-sql-stored-procedure/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>how to use a printer file in a program cobol</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-use-a-printer-file-in-a-program-cobol/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-to-use-a-printer-file-in-a-program-cobol/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 17:50:26 +0000</pubDate>
		<dc:creator>Sylvana</dc:creator>
				<category><![CDATA[AS/400 printing]]></category>
		<category><![CDATA[COBOL]]></category>
		<category><![CDATA[iSeries Cobol programming]]></category>
		<category><![CDATA[Printer File]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[hi, how to use a printer file in a program cobol. i have the following: (I wanna know if the write part is correct)  MOVE M1DESC TO M1DESC-DSP.            MOVE M1DESC-DSP TO R1DESC-PRT.        MOVE PRINTER-LINE TO HIPR01R-RECORD.  WRITE HIPR01R-RECORD FROM PRINTER-LINE. Regards Sylvana.]]></description>
				<content:encoded><![CDATA[<p>hi,<br/><br/> how to use a printer file in a program cobol.<br/><br/> i have the following:<br/><br/> (I wanna know if the write part is correct) <br/><br/> MOVE M1DESC TO M1DESC-DSP.            MOVE M1DESC-DSP TO R1DESC-PRT.        MOVE PRINTER-LINE TO HIPR01R-RECORD. <br/><br/>  WRITE HIPR01R-RECORD FROM PRINTER-LINE. <br/><br/> Regards <br/><br/> Sylvana.<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-to-use-a-printer-file-in-a-program-cobol/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Moving data between 2 iSeries Servers</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/moving-data-between-2-iseries-servers/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/moving-data-between-2-iseries-servers/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 19:13:04 +0000</pubDate>
		<dc:creator>wpoulin</dc:creator>
				<category><![CDATA[AS/400]]></category>
		<category><![CDATA[COBOL]]></category>
		<category><![CDATA[iSeries]]></category>
		<category><![CDATA[iSeries Cobol programming]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[We have a Production iSeries and a Development iSeries. We want to be able to select data from our Production System and Transfer it to a programmers library on our Development System. When we were on a single system we used SQL/Cobol. We have been successful getting to the database on each system through the [...]]]></description>
				<content:encoded><![CDATA[<p>We have a Production iSeries and a Development iSeries.  We want to be able to select data from our Production System and Transfer it to a programmers library on our Development System.  When we were on a single system we used SQL/Cobol.  We have been successful getting to the database on each system through the use of the SQL Connect statement, but can only Connect to one database at a time.  The problem is where to store the data as we change connections.<br />
Any thoughts ?<br />
Thank You,<br />
Bill</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/moving-data-between-2-iseries-servers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>%parms and ILE/COBOL</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/parms-and-ilecobol/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/parms-and-ilecobol/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 15:18:11 +0000</pubDate>
		<dc:creator>Unknowingone</dc:creator>
				<category><![CDATA[i5]]></category>
		<category><![CDATA[iSeries Cobol programming]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Is there a way in COBOL to determine how many parms have been passed in? (like the %parms bif in rpgiv)]]></description>
				<content:encoded><![CDATA[<p>Is there a way in COBOL to determine how many parms have been passed in? (like the %parms bif in rpgiv)</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/parms-and-ilecobol/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/14 queries in 0.389 seconds using memcached
Object Caching 657/698 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-19 12:06:32 -->