What is the significance of the PROGRAM-ID paragraph? If
this name doesnt match with the name of the COBOL program,
does it make a difference? Is the name specified in the
PROGRAM-ID paragraph used as a name for the load module or
any such thing?
Answer Posted / santy
PROGRAM-ID name is given in PROGRAM-ID prargraph. you can
give program id name as member name or different, but
mostly we put same as member name, because whenever you
submit the program then load module will be crated on the
member name. and if the load module name is not match with
program id name then program will abend.
| Is This Answer Correct ? | 4 Yes | 30 No |
Post New Answer View All Answers
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
Name some of the examples of COBOl 11?
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
i want a program using by if, evaluate , string, unstring, perform, occurs?
What is the compute verb? How is it used?
Name the divisions, which are available in a cobol program?
What is length is cobol?
What are different data types in cobol?
Write down the divisions of cobol program?
Can we change the password using ALTER? anyone tried and changed?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
Explain how to differentiate call by context by comparing it to other calls?
How are the next sentence and continue different from each other?