RPG passes parameters by reference, IE the memory address. If you are calling a program there is a potential that the calling program can modify the value at that address. If you do not want the value to change then set the parameter in the program or procedure to use the CONST keyword. This simple

Read More