Can anyone explain me CALL procedure in COBOL.Does it
carries similarities like call by reference in C.
Answer / sravani
CALL statement is used to whenever if we want to call any subprograms in the main program.
The call can be a dynamic call or static call.
In static call the subprogram is compiled alone with the main program where as in dynamic call the calling program and called program will be compiled separately.
If there were any changes in the subprogram then main program also needs to be recompiled in case of static call its not required in dynamic call.
For static call NODYNAM is choosen and for dynamic call DYNAM is choosen. For static call the program name is passed directly for dynamic call the program name is declared in working storage section and it will be called using the working storage variable.
Various ways of calling the subprograms using call statement
CALL WS_PGM using by reference using identifier-1, identifier-2.
CALL WS-PGM using by content using identifier-1, identifier-2.
CALL WS-PGM using by value using identifier-1, identifier-2.
CALL WS-PGM.
| Is This Answer Correct ? | 3 Yes | 0 No |
maximum of how many screens we can open in emulator
What is ASKTIME, SUSPEND
We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.
is it possible to declare index in cobol program? if it is not why its tell me pls
What is a scope terminator? Give examples.
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
Which Search verb is equivalent to PERFORM…VARYING?
Please let me know at which Scenarios we will go for STATIC call or DYNAMIC
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
What are the steps you go through while creating a COBOL program executable?
For rewrite, why is it mandatory that file needs to be opened?
How to delete the records of a dataset through cobol programme?We should not use jcl utilitities like IDCAMS.