Answer Posted / sahil maini
Common Work Area (CWA) is allocated to CICS system when
CICS is started and it remains till CICS system is active.
Data stored in common work area can be accessed accross
transations and terminals and is very efficient to store
data which is frequently updated. Below COMMON-WORK-AREA
will directly access CWA and following should be executed
if program is called or linked.
Working-storage Section.
01 COMMON-WORK-AREA pic X(10).
EXEC CICS ADDRESS
CWA(ADDRESS OF COMMON-WORK-AREA)
END-EXEC
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Highlight the difference between a symbolic map and physical map?
What is the common systems area?
which is the cics control program that provides communication services between user written application programs and terminals?
Can you explain common systems area?
What is the primary aspect of CICS?
Explain the difference between exec cics handle condtion and an exec cics ignore command?
Why do we need integrated cics translator?
Db2 what is the difference between a package and a plan. How does one bind 2 versions of a cics transaction with the same module name in two different cicsregions that share the same db2 subsystem?
Explain how do you dynamically set the cursor position to a specific field?
Explain how would you resolve an asra abend?
Explain the difference between using the read command with into option and set option?
what is the differences between getting the system time with eibtime and asktime command?
if i am having a cics,vsam and db2 programs with each functions and i want that each function on screen?
How To Compile The COBOL-BD2-CI CS Programs In Real TIme? Please Give Me the Detailed Description?
We can allocate memory dynamically by using GET MAIN command my question is at what scenario we can't release this memory and reuse this same memory??