Page 1 of 1

Expand copybooks in the program itself.

Posted: Mon Jul 10, 2017 3:34 pm
by Manoj
Hi,

In the COBOL program using REXX can we expand the copybooks then and there instead of going to coybook-library and look for it there?

Re: Expand copybooks in the program itself.

Posted: Mon Jul 10, 2017 4:54 pm
by Robert Sample
Do you mean have the COBOL program call a REXX program to expand the copy books for the compile? If so, then the answer is a resounding NO! The COBOL program has to be compiled and the copy books are expanded during the compile. The program CANNOT call a REXX subprogram until it is executing, which CANNOT in turn occur until the COBOL program has been compiled and linkage edited / bound.

You could PROBABLY write a REXX program to take the source before the compile and expand the copy books, but the question is ... WHY? The compiler does that for you automatically, so why spend the resources to create something you already have?