differnce between read work file 1 and read work file once?
why we are using work file once?
Answer Posted / kevin
As NIKI stated the read work file 1 is identifying the work
file in JLC
As for the work read work file once it is used to get the
next record. The record pointer doesn't get reset allow
you to process records from 2 files one at at time.
For example if you are comparing record from 2 work files
and processing the records in order
read work a once /* reads the first a record
read work b once /* reads the second b record
REPEAT
IF rec-a > rec-b
process b ...
read work b once
escape top
End-if
IF rec-a < rec-b
process a ...
read work a once
ecape top
End-if
If rec-a = rec-b
process a and b ...
read work a once
read work b once
end-if
end-repeat
(of course you would need escape logic in the loop such as
end of file logic...)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is a hyperdescriptor?
Can we see the copy book length using file-aid?
Explain why do we use file-aid for seqential files?
What is the quality process in development?
Explain the data storage?
Tell me can we update with histogram?
Can you explain control variable in online screens?
What happens when you issue a escape routine in a program? Will there be any compilation /run time erro?
How to find occurrence of mu and pe fields in a file?
The natural file converted to PDF file if Yes then explain ?
How to receive data passed through jcl parm parameter in a natural program? How data definition is defined in the program?
In a Natural program i used the below code for report FORMAT LS=132 PS=60 And down the line I want to change either LS/PS like FORMAT LS=120 PS=50, is it possible? How it will work?
Explain how to ftp the natural program to desktop? (From mainframe to pc), is it possible?
Explain the address converter?
Explain what happens when you issue a escape routine in a program? Will there be any compilation /run time erro?