View previous topic :: View next topic
|
Author |
Message |
Coboluser
New User
Joined: 01 Dec 2021 Posts: 1 Location: India
|
|
|
|
Hi All,
There is a copybook with following definition
Initial:
01 Copybook-1
05 Field-A PIC X(10).
05 Field-B PIC X(5).
05 FILLER PIC X(485).
Change:
01 Copybook-1
05 Field-A PIC X(10).
05 Field-C PIC X(5).
05 Field-B PIC X(5).
05 FILLER PIC X(480).
Field-B and Field-C are not used by old programs. Does the change still require to recompile all the programs that are using the copybook.
Has anyone come across a situation like this before. |
|
Back to top |
|
|
Rohit Umarjikar
Global Moderator
Joined: 21 Sep 2010 Posts: 3077 Location: NYC,USA
|
|
|
|
No.As they will continue to use older version used during the compilation. |
|
Back to top |
|
|
|