I have got an assignment where I need to increase the size of a number of fields in several RPG programs. What I am doing first is changing the field size in the Definition (the most obvious one). The next step is to search for all instances where the changed field is used (like assignment to another variable or arithmetic operations) and if the size of a variable to which the value of the changed variable being assigned to is smaller, the receiver variable is enlarged. The last step is to follow the receiver variables identified in the second step and identify any arithmetic operations they are used in and so on..
Apart from this, can the more experienced programmers provide any suggestions if anything more id to done?