Our issue is there seems to be a disconnect, or no link,
between our SELECT statement and our SD. We had
SELECT SORT-FILE and SELECT SORT-FILE
ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1
SORTWRK2
SORTWRK3
SORTWRK4.
with SD SORT_FILE
RECORD CONTAINS 7833 CHARACTERS.
In either case, at run time, the system ignored our
SORTWRK# DD statements and allocated 16 sort works with the
SORTWK## naming convention. Any ideas why the system does
not recognize the connection? We do not even need the
SORTWRK DD statements. Thanks
No Answer is Posted For this Question
Be the First to Post Answer
The maximum number of dimensions that an array can have in COBOL-85 is ?
s9(18) comp-3:: What is the size of memory it takes internally?
How many maximum number of procedures can we write in one COBOL program?
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
1.What is the limit of linkage section?
How can you get the ksds file records into your cobol program?
What are the various section in data division and briefly explain them.
how we separate the cobol cics statements from cobol&cics programming?
How is sign stored in a COMP field ?
which is better comp or comp-3 in terms of memory utilization?
how can you identify wheather the program is using search or search all in the cobol program?
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250