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
Is length = 0 sufficient to ascertain that the field has been modified?
Name the command used for terminating a browse operation?
Can you define transid?
Can a CICS code be a part of a copybook? If so, then what are the outcomes after compilation?
In the EIB block of CICS, highlight the names of few of the important fields?
Explain the difference between the into and the set option in the exec cics receive map command?
Explain ceci transaction commands?
Explain how do you handle errors in cics programs?
Explain 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 cics regions that share the same db2 subsystem?
Define RCT.
Explain the difference between cics program control table (pct) and cics processing program table (ppt)?
Explain the difference between a return with transid and xctl? For example program. A is issuing return with transid to program b. Program a. Is isssuing xctl to program b?
Explain cemt transaction commands?
Name at least one of the ways by which a transaction can be terminated?
Define temporary storage?