Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What is a hyperdescriptor? How does it work?

1060


Explain adabas basic concepts. Like inverted list, address converter ,data storage?

942


Explain how to receive data passed through jcl parm parameter in a natural program? How data definition is defined in the program?

1082


Explain how many work file we can code in jcl?

931


Explain control variable in online screens?

953


Explain how are you going to remove duplicates from the file that is being read?

964


Explain the data storage?

944


Explain how to move cursor to a particular field when position is not known?

949


What is the difference between read(1) and read work file once?

971


Tell me can we update with histogram?

1050


How can we see the copy book length using file-aid?

911


What is the difference between escape(top or bottom) and escape immediate(top or bottom?

947


The natural file converted to PDF file if Yes then explain ?

3093


How to create 1 ddm that fetches 3 adabas files simultaneously?

879


What happens when you issue a escape routine in a program? Will there be any compilation /run time erro?

934