What is the difference between iter and do?
No Answer is Posted For this Question
Be the First to Post Answer
How do you call procedures in ILE?
How to print output from openquery in as400 ?
If there are 1000 member(PGM type) in a SRC file. How can we compile in a CL program? ( It need to be done in a loop)?
wat is meant by hidden field , why it is used?
what is the difference between the procedure and module in ILERPG?
How can we receive values from a called procedure in RPG?
Have a join logical file with more than one members with different record formats. So how can we read the different members from this file and also how we can read the different record format from the join logical?
how does the rpg element work?
what are the array operations?
use of PUTOVR,OVRDTA,KEEP keywords?
There is a excel sheet having details of Old account number and new account number. I need to update these details in my AS400 files. i.e. all the records having old account number should be replaced with new account number. There can be 100 or 200 or 300 PFs...no fix files known. how can we do this?Solution should be performance oriented
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