What is the difference between working storage copybook and
linkage section copybook?
Answers were Sorted based on User's Feedback
Answer / vinod
working storage copy book is temporal feilds and assign them
in dynamically on execution and where as linkage storage
copy book is to store permanent memory to related called sub
programs at its assigns the feild statically on before
passing the main program.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ssampath
working storage is local and linkage is global
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nag(igate)
The working storage fields are used for the program to run
first time, whereas the Linkage section fields are used to
run the program more than once.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / karthik
Working storage copybook will get expanded during
compilation whereas linkage section copy book will get
expanded during translation. This is with respect to cics-
cobol program. The copybook EIBBlock gets included while
translation
| Is This Answer Correct ? | 6 Yes | 7 No |
Answer / guest
Those data's that are declared in the WS-Section in main
program should be declared in the linkage section in the sub
or called program.
| Is This Answer Correct ? | 0 Yes | 7 No |
Please let me know how the Eject verb works for page break.. I want to know the code, how it is used.
If there are two copybooks which have same variables and we are using both the copybooks in our program. will there be an error and if i move values to the variable which copybook varibales gets the values i move in.
what are the utilities for load and unload the DB2 tables
what is sort? whis is internal & external sort ?when do u go for inter sort & external sort? tell about some sort utilites?
The below is the declaration for a variable ws 01 ws pic 9(3). if you want to insert space how will you do that. in which level u should do it
Which division and paragraphs are mandatory for a COBOL program?
Can we move X(7) to S9(7) COMP?
In A cobol program , we can use COPY Statement in FILE- SECTION / WORKING-STORAGE SECTION / ENVIRONMENT DIVIION basically what is the difference
hw to create 3 dimensional array & hw to access it?
How can you add a particular field/coloumn in copybook?
What is 77 level used for ?
What is the LINKAGE SECTION used in COBOL?