-
RPG Status Error 00222: A character representation of a numeric value is in error
We have an application that frequently ab-ends because of RPG status error 00222 that states (in part) "...a character representation of a numeric value is in error...". We have scoured program listings and dumps trying to find the field(s) causing the error, but cannot find the smoking gun. Does...
Last updated: -
I am new to RPG. I am designing a report and I want my report to skip page after every 3 records printing. How do I achieve this? Where should I place this keyword? Thanks in advance.
Last updated: -
How to convert RPG to a .txt file
How do you take a regular source member and convert it a .txt file?
Last updated: -
How to define HELP with control options in RPG
I am new to RPG. I want to define HELP with the options I have given with my application, so that user presses F1 over options (e.g F8 etc) and a help window appears and show him what F8 do? Thanks in advance.
-
Hi, I have a question regarding RPG which I have zero experience or knowledge. My problem is that there is an expiry code in the system and the programmer who supported our software passed away unexpectedly. We have been back dating our server to 11/30/13 in order to access the system each day. I...
-
What is the full form of RPG?
-
Barcode Insert FNC1 IBM4400 RPG
How to insert FNC1 in postal GS1-128 barcode. IBM 4400 Thermal printer, IGP emulation (PGL/VGL), using RPG
-
iSeries stored procedure isn’t returning value when calling RPG program
Our team currently has a stored procedure that calls an SQLRPGLE program. It's running great as we have verified the debugger and it sends the return value as expected. But the problem is what is returned when we're looking at cmd.Parameters["@ISMATCH"].Value = {} Here's our stored procedure:...
Last updated: -
Data from RPG to Java isn’t properly ordered
We're sending "foreign data" (from a different language) from a RPG program to a Java program but some of the data isn't coming in properly. The RPG program is currently running on an iSeries machine and Java is through a remote method invocation. The data is received by the Java program in logical...
-
Was your RPG to Java migration successful?
Basically our company uses IBM iSeries for the majority of our data processing. Almost 99% of our internal applications are written in RPG. We realize IBM is trying to push companies towards Java/J2EE / we're trying to modernize our apps with a GUI interface. Not to beat around the bush but our...
Last updated: -
Receiving error message when calling Java method from RPG
I've been having a lot of trouble with a "ClassNotFoundError" when I'm trying to call a Java method from RPG. This has been happening with several other users as well. It seems that it could be a problem with CLASSPATH or access to JAR files. I've give a better description: We have a RPG program...
-
Programming an alarm in RPG with AS/400
I need a little help building an alarm for unlocking blocked cells when a particular action takes place. Here is the code I've written, but it doesn't work right. I'm using RPG with AS/400. volatile bool interrupted; main() { sigaction(SIG_ALARM, myhandler) // register handler alarm(3) // set...
Last updated: -
How can I manipulate a string in RPG?
I know this might sound like a "beginner" question but I know most of the time strings in RPG have a fixed length (but more importantly, have a finite length). But I'm pretty much lost on how to write a procedure for string manipulation.How can I write a procedure that takes care of a string of...
Last updated: -
Can my friend call a remote Java program on iSeries from RPG?
One of my good friends (who's a programmer) is looking to invoke a Java program from RPG running on iSeries V5R4. His remote program is a web services client, running in WebSphere. He would like to call it direct from RPG...is that possible? Does he have to create a program to run on iSeries and...
Last updated: -
Verifying user, password and open menu of RPGs
I currently have a login module in my AS/400 application where the user name and password are verified and only if the password matches the user, they are given access to the Menu screen (with contains RPG programs). I'm trying to find out if it's possible to achieve that when the user is verified,...
-
Reading liblist through an ILE program
Our part of the company controls what objects our programs on our AS/400 work, running them with different liblists. But we know that some operations can't be controlled by this. Our program needs to read the liblist and decide on some of the libraries in it (and how to act).But we couldn't find...
-
How can I access RPG on iSeries from Java?
I'm pretty much a beginner on all things AS/400 related so I'm trying to find out if other professionals have had good experiences of talking direct to RPG programs running on a v5r4 iSeries machine from Java. What pitfalls should I try to avoid with this?From what I've read, I can use...
Last updated: -
Hi, Difference in the no of physical file count in a library using the DSPFD command and DSPDBR. DSPFD FILE(/) TYPE(*MBR) OUTPUT(*OUTFILE) OUTFILE(/File1) OUTMBR(*FIRST *ADD) When I try to take the count of this outfile for type ='P' the value is 1000(For eg). But when I store the results of DSPDBR...
-
Execute SQL statement using an RPG variable
I'm trying to pass a cursor and data structure to a procedure. That procedure should populate the structure with the next row from a SQL cursor. Here's what I'm trying to do: ***************************************************** * * Fetch the next row from a cursor * * @param cursor - the name of...
Last updated: -
How to tell why a program is failing in RPG
Is there a way that an RPG program can log what happens when a program call fails? I need to know if what I am running is failing due to an authority issue or because it could not find the program. How would I do this?