what modification we need to do in jcl if we use sort in
cobol? I mean whether we need to include tempary file used
for sorting in assign statement?
Answer Posted / sandhya
in jcl there is no need to assign temporary file..and we
have to create temporary file in cobol same structure as
cobol program..this temp file sort the records and output
went to output file..
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Describe the cobol database components?
What is link edit in cobol?
What is amode(24)?
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
How you can characterize tables in cobol?
What are the access modes of START statement?
what is amode(24), amode(31), rmode(24) and rmode(any)?
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
What is the compute verb? How is it used?
How do define dynamic array in cobol.
What is amode(31)
What is the default value(s) for an initialize and what keyword allows for an override of the default?
Name some of the examples of COBOl 11?
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?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this