what are the array operations?
Suppose I have 3 jobs a b and c. I want to submit b after successful completion of a and want to submit c after successful completion of b. Without using job scheduler or job queue, how can I do that through cl program?
difference between CHAIN and READE?
Hi guys, anybody know How RPG/400 code can be converted to RPG IV code with a single command?
how do I play {insert rpg system here}?
We have job which is running as batch. It takes atleast 06 hours to complete tht job. But I wanna do tht job with in 3 hours?
How do u design a physical file, when you have 2 Unique fields like for eg in A student file student ID and student examination no both are unique
You have a *USE authority on a Library and *All authority on a file in that Library.Can you change the data in that file?
RPG/400 faqs?
what is the difference between SETON RT & RETURN?
WHAT IS MONMSG IDENTIFIER FOR STRTCPFTP command IN cl (as/400)?
in which journalling which attributes are necessary
can any body correct the following code? Following a procedure which returns the maximum of two numbers.Correct the following code. P GETMAX B D GETMAX PI D NUM1 35 0 D NUM2 45 0 C IF NUM1 > NUM2 C RETURN NUM1 C ELSE C RETURN NUM2 C ENDIF P GETMAX E