View previous topic :: View next topic |
Author |
Message |
chinatrain99 Beginner
Joined: 25 Nov 2014 Posts: 7 Topics: 5
|
Posted: Tue Nov 25, 2014 2:39 pm Post subject: program disabled when cics region bounces |
|
|
For some reason, in our test region, a program was set to be disabled when the cics region started. now, they want the program available when the cics region starts (test system bounces every couple of days). The person who made the initial change is retired now and it all rolls down hill. here is what I did and was wondering if I was correct.
I did a CEDA DIS PROG(CRI96*) GROUP(*)
found my program and did an "AL" to alter. I then changed status from disabled to enabled, backed out and did an "I" to install. how close was I? thanks, jeff |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Tue Nov 25, 2014 4:07 pm Post subject: |
|
|
chinatrain99,
My CICS knowledge is kinda of rusty. But you can try this
1. Add an entry to PLT table (DFHPLTxx) for your program.
2. Add an entry to CICS System Initialization Table(SIT) PLTPI=xx
This would make the transaction start every time you start CICS. _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
chinatrain99 Beginner
Joined: 25 Nov 2014 Posts: 7 Topics: 5
|
Posted: Tue Nov 25, 2014 4:14 pm Post subject: |
|
|
the transaction was never disabled. the program was. I looked thru the sit/plt datasets and there is no reference to the program in there. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Tue Nov 25, 2014 4:23 pm Post subject: |
|
|
chinatrain99 wrote: | the transaction was never disabled. the program was. I looked thru the sit/plt datasets and there is no reference to the program in there. |
Unless the transaction is scheduled to run every time CICS starts up, the transactions will be disabled.
Try adding the above mentioned entries and then bring down CICS and bring it up and see if the transaction is automatically started _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
|
|