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 |
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
Can you REWRITE a record in an ESDS file? Can you DELETE a record from it?
6 Answers ABC, IBM, Mphasis, Wipro,
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
What is the difference between external and global variables in COBOL?
01 a pic s9(5) occupies how many bytes ?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
What is the LINKAGE SECTION used for?
How to use the same COBOL program in Batch and CICS on lines? explain with an example
What are the functions like c or c++ in cobol?
db2 variable decimal(15,2) what is the equalent size of cobol variable
What is the difference between CONTINUE & NEXT SENTENCE ?