0 votes
in Cobol by
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?

1 Answer

0 votes
by

The ONLY way is to look at the output of the linkage editor or the load module.

If the module is being called DYNAMICALLY then it will not exist in the main module, if it is being called STATICALLY then it will be exist in the load module.

...