In COBOL CALL-CALLING,if a program A is calling 3 sub-
programs, dynamically, then it is said sub-programs will
always will always in Initial Mode. My question is : Do we
need to code CANCEL or (IS INITIAL) for dynamically called
sub-programs or it is the property of Dynamically called
pgms so every time sub-pgms are called they will be in initial
mode. ***This question is only Dynamic call****,
Please reply. Thank you in advance.
Answer Posted / kingmanish
The dynamically called program is loaded once a call is
made to it dynamically by a calling program.
The program is initialised only when it is called for the
first time and remains in memory till the end of calling
program.
After the first call from second call onwards the called
program should be initialised.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between external and global variables in COBOL?
) How do u handle errors in BMS macro
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
Describe the cobol database components?
Write a program to explain size error.
what are decleratives in cobol?
What guidelines should be followed to write a structured cobol prgm?
What is static and dynamic call in cobol?
How to know whether the module is dynamical or statistical?
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What rules are to be followed while using the corresponding options?
how do you reference the variable block file formats from cobol programs
What is Pic 9v99 Indicates in COBOL?