A COBOL program has a file in which for two fields I want to increase the size of them. One is of length 5 and needs to change to 10 while other is of length 9 and should be of 11 now. With length 5 is NUM to CHAR, second is NUM to NUM.
Can I just do it COBOL program itself than using JCL with sort or some other utility?
Doing it like:
Code: Select all
Var1 pic 9(5)
Code: Select all
Var2 as pic X(10)
Is it right or are there ways to do it?