What resources would you recommend for RPG36 code conversion? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T20:26:02Zhttp://stackoverflow.com/feeds/question/381891http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/381891/what-resources-would-you-recommend-for-rpg36-code-conversion0What resources would you recommend for RPG36 code conversion?Mike Wills2008-12-19T19:08:39Z2009-07-30T20:20:42Z
<p>The question really asks it all. We have a bunch of really old S/36 programs that need to be moderized. I am more looking for articles or sites that explain what the old method does and how to convert it to RPGLE.</p>
http://stackoverflow.com/questions/381891/what-resources-would-you-recommend-for-rpg36-code-conversion/387089#3870890Answer by Paul Morgan for What resources would you recommend for RPG36 code conversion?Paul Morgan2008-12-22T19:21:33Z2008-12-22T19:21:33Z<p><a href="http://publib.boulder.ibm.com/iseries/v5r1/ic2924/books/c0918180.pdf" rel="nofollow">Here's a manual</a> for RPG II on the AS400 so you can understand the old code.</p>
<p>You could just trying to compile the code as RPGIII using CRTRPGPGM. Fix the compile errors on the listing to convert the code to RPG III.</p>
<p>Once you have RPG III source you can continue further to convert it to RPG ILE with the CVTRPGSRC command.</p>
<p>It's might also be possible to take the RPG36 code directly into CVTRPGSRC to convert the source to RPG ILE.</p>
http://stackoverflow.com/questions/381891/what-resources-would-you-recommend-for-rpg36-code-conversion/1060868#10608681Answer by LarrikJ for What resources would you recommend for RPG36 code conversion?LarrikJ2009-06-29T22:19:32Z2009-06-29T22:19:32Z<p>There is no syntactic difference between RPG II and RPG III. You can actually just change the attribute from RPG36 to RPG and it will be "upgraded." You can then run this new member through CVTRPGSRC and get a (usually) useable RPGLE program out of it.</p>
<p>S/36 Procedures, on the other hand, are not as simple to convert.</p>