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 Static,Dynamic linking ?
Can anyone tell me how to handle the array beyond the limit. If we have an array or a table which can handle 5000 records but now we have to compensate 20000 records with the same array? how to handle the situation.
I have a Flat file in which certain records are present in a tabular format. I need to extract some of the records on some basis from it and copy them into a flat file...how it can be done ??
Can we redefine the field of x(200) to less than 200?
I want ALL jcl ERROR cods
Wat is the difference between NEXT and CONTINUE statement in cobol,can any one explain with example.
Define REDEFINE clause and Is it possible to have the redefine clause anywhere in the working storage section for a data name?
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?
how to code in cobol while using variable block file?
what is the size of W-REC in the following 01 W-REC 05 A PIC 9(4)V99 05 B READLINES A 10 C PIC XX 10 D PIC S9(4) 05 E OCCURS 7 PIC ZZ.ZZ 05 F OCCURS 5 10 G PIC ZZ.ZZZ99 10 H OCCURS 3 15 J PIC 9(3) 15 K PIC V99
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?