hi,guys
i am new to cics programming, and i have a question about data stored in DHFCOMMAREA, does this value remain unchanged until new data move in or the session end?
for example,
----------------------------
working-storage section
01 ca-data pic x.
linkage section
01 dfhcommarea pic x.
.
.
exec cics
return transid('xxxx')
commarea(ca-data)
end-exec
-----------------------------------
fisrt time, i move 'y' to ca-data, so second time start, i get 'y' from dfhcommarea. but next time ,i didn't move anydata to ca-data, so i think ca-data should contain low-value(i am not sure), so start again, dfhcommarea still contain 'y' , why not be relpaced by low-value? thanks!