How can I tell if a module is being called DYNAMICALLY or
STATICALLY?
Answers were Sorted based on User's Feedback
Answer / sudha
If there is DYNAM compiler option then the module is
dynamically called. A STATICally called module is one that
is bound with the calling module at link edit, and
therefore becomes part of the executable load module.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / dev
also the method of calling is differnt in cobol code also
static call
call 'pgmname'
dyanmic call
call identifier eg call pgmvar
where pgmvar is a working storage variable having the pgm
name
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / arun
Answer 1 is exact. calling a program using working-storage
variable is implicit call and it does not make a dynamic
call.
| Is This Answer Correct ? | 8 Yes | 0 No |
WT R TECHNICAL MAINFRAME QUESTION ASKED IIN ANJANASOFTEARE??
How to execute a set of JCL statements from a COBOL program?
What are all the divisions of a COBOL program?
If my program receives input feed from program in other system.. if the receiving field size is less than the sending field.. what abend will be happening.
record length in spool?
if a pic 9(3) value 354,b pic x(2) value '46' then a)a>b 2)a<b 3)error
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
What are VS COBOL 11 special features?
)what is retrieve?
why we are using picture clause in the cobol programs?
What are the different data types available in COBOL?
What is link edit in cobol?