I have a cobol program with a sub program. How ca i find that
it is a dynamic call? or static call..?
Answer Posted / seema dawlekar
In a main program if we are calling subprogram directly ie
by giving 'call subprog' then it is static call.
ex:call subprog.
if we are moving the subprogram name to the working storage
variable and calling the working storage variable then it a
dynamic call ie.,
ex:
01 ws-var1 pic x(10).
move subpgrog to ws-var1.
call ws-var1.
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
Difference between array and sub-script ?
Give some examples of command terminators?
What is link edit in cobol?
How do you differentiate between cobol and cobol-ii?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
What is the difference between goback, stop run and exit program in cobol?
) how do u code after getting data?
What is the problem of ordered sequential files access?
What is a SSRANGE and NOSSRANGE?
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
How can you get the ksds file records into your cobol program?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
Mention the guidelines to write a structured cobol program?
How are the next sentence and continue different from each other?
How to know whether the module is dynamical or statistical?