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?
Answers were Sorted based on User's Feedback
Answer / guest
yes we need to include one temp file whose record size is same
as that of input file record size
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / 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 |
What is the difference between SEARCH and SEARCH ALL?
In COBOL "BEFORE" advancing is there or not ?
hi. This is Ram.i have one doubt.why can't we display comp-3 variables directly? let me answer quickly plez........
How do you set a return code to the JCL from a COBOL program?
what will happen if i give program name and member name as different? program runs successful or w'll abend?
hw to create 3 dimensional array & hw to access it?
what is subscript in cobol?give realtime example?
How do you submit JCL via a Cobol program?
What are declaratives and what are their uses in cobol?
given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1
what are the paramater we cannot use in procedure?how many instream we can write in single jcl?can we call instream to catalog and ctalog to instream?
Whats the use of Examine command? can someone help me?