HI,
please answer these questions.
1.how we can submit jcl under cics environment?
2.how do we implement locking in cics?
3.can a program change protected field?
4.how do i find the name of cics region inside my cobol program?
answer asap.
bye.
Joined: 25 Jan 2004 Posts: 180 Location: Toronto, Canada
Ashutosh Shrinet wrote:
HI,
please answer these questions.
2.how do we implement locking in cics?
3.can a program change protected field?
4.how do i find the name of cics region inside my cobol program?
answer asap.
bye.
1.how we can submit jcl under cics environment?
your shop will have its own programs like for me its
EXEC PGM=D7DADS
This will connect me to cics
using this I can execute CEMT and other transactions.
3) yes protected field can be changed from a cobol program
There will be an attribute field generated for a field
Empno -> EmpnoA
Move 'A' to EmpnoA
Move 'I' to EmpnoA will make it unprotected
Move '@' to EmpnoA
Move '8' to EmpnoA will make it protected.