| Author |
Message |
Ashutosh Shrinet
New User
Joined: 22 Aug 2004 Posts: 10 Location: New Delhi
|
|
|
|
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. |
|
| Back to top |
|
 |
References
|
Posted: Sat Oct 09, 2004 10:03 am Post subject: Re: How we can submit jcl under cics environment |
 |
|
|
 |
jz1b0c
Active User
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. |
|
| Back to top |
|
 |
|
|