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 |
What is the compute verb? How is it used?
I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue
what is scope terminator
How do u debug a S0C7 abend? (aswered till we get the field which caused that) After knowing the field which caused that how do u know the record which caused that if it is in production env? (dumb) Ok let us assume that we got to know that 100th record caused that and I wanted to skip only 100th record from the file and process from 101th. How to do that in JCL using SORT? (tried with STOPAFT but ended up dumb when he said smthing else is ther)
How can you declare the file ?
if one main program ,n -subprograms are then which call you follow ?why reasonuhg
i have variable record in the 5th, i want to sort from 5th filed ? how ?
What is an explicit scope terminator?
What is the difference between external and global variables in COBOL?
can u plz expain me how to declare dynamic array? what is the meaning of depending on clause in dynamic array?
If I want to increase the Limit in GDG. What should I do?
How to know whether the module is dynamical or statistical?