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 s000 u4087 error? please give the all error codes in cobol,jcl.
How do u sort the table for Search ALL? Is it only using ASCENDING KEY IS statement in occurs clause? If the data is input in non ascending order, will the ASC KEY IS automatically sort the data? or will it throw compile time error?
What is a SSRANGE and NOSSRANGE?
What is perform what is varying?
comp-3 field occupy?
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
1.What is the default print format in cobol?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
What is the LINKAGE SECTION used for?
How to delete the records of a dataset through cobol programme?We should not use jcl utilitities like IDCAMS.
Can we redefine the field of x(200) to less than 200?
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?