suppose a cobol programme A calling programme B,C and D.
If C undergoes some change what if A,B,C,D need to be
recompiled or only C nee to be recompliled.
Answers were Sorted based on User's Feedback
Answer / umesh sasankota
It depends on whether the compilation is Static or Dynamic.
Assuming Program A is calling Program B,C & D.
In Case of Static Compilation option (Compiler Option
NODYNM): Compile C first and then compile A. As no changes
in Programs B & D no compilation required for these 2 members.
In Case of Dynamic Compilation (Compiler Option DYNM), only
Program C need to be compiled.
| Is This Answer Correct ? | 21 Yes | 0 No |
Answer / krishnan
Based on the compile option we will deside if static call
means C separately no need to complile if it is dynamic
means u need to recompile the C pgm
| Is This Answer Correct ? | 5 Yes | 5 No |
what is search and searchall?what is the diffrence between them?give an best example?
How you can characterize tables in cobol?
WHY LRECL NEEDS TO BE 4 EXTRA THEN THE COBOL FILE LENGTH & WHAT IT CONTAIN IN THAT LENGTH
what is scope terminator
Determine the total no of bytes in the following. 01 rec1. 02 a pic x(6) 02 b redefines a. 03 c occus 6 times pic 9. 02 d occurs 6 times pic 9. 03 e pic x(5) 03 f pic 999.
HOW TO MOVE REDEFINES CLAUSE FROM INPUT TO OUTPUT ?
Explain the configuration section of a cobol program with examples of syntax.
How do u find the programs calling the given module, without having doing 3.13 on loadlib/source library?
What is the LINKAGE SECTION used in COBOL?
what is the coding difference between COBOL and CICS.
What is the difference between CONTINUE & NEXT SENTENCE ?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?