View previous topic :: View next topic
|
Author |
Message |
Elixir
Active User
Joined: 08 Feb 2009 Posts: 116 Location: CHENNAI/NEW JERSEY - INDIA/USA
|
|
|
|
Hi,
I want to expedite an online Module/Transaction in CICS region.
But that module is already put in that region and being expedited by someone else.
Due to this when I try to NEWCOPY, I get an error.
Is there any command by which I can override the other person's online module/Transaction present in the CICS region. |
|
Back to top |
|
|
Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 8700 Location: Dubuque, Iowa, USA
|
|
|
|
How about talking to the other person?
If you did hijack the transaction, what would prevent that person from doing the same to you? |
|
Back to top |
|
|
Garry Carroll
Senior Member
Joined: 08 May 2006 Posts: 1202 Location: Dublin, Ireland
|
|
|
|
You won't override the other person's use - but use PHASEIN. This should give you the new copy and let them complete their usage. They will get the new copy the next time they invoke the program.
Garry. |
|
Back to top |
|
|
Bill O'Boyle
CICS Moderator
Joined: 14 Jan 2008 Posts: 2501 Location: Atlanta, Georgia, USA
|
|
|
|
Note: The "New Copy" of the load module will not be "Phased-In" until the RESCOUNT is ZERO, which means the user(s) are done with their session and have exited.
You can check the RESCOUNT via a CEMT INQ PROG.
Many times, users "X" out without gracefully logging off of XPED and the program remains in-use (RESCOUNT is non-ZERO).
To get around this, use CECI and issue a RELEASE PROG API until the response at screen bottom is non-ZERO.
Bill |
|
Back to top |
|
|
Elixir
Active User
Joined: 08 Feb 2009 Posts: 116 Location: CHENNAI/NEW JERSEY - INDIA/USA
|
|
|
|
CECI RELease (Online Program Name) |
|
Back to top |
|
|
Elixir
Active User
Joined: 08 Feb 2009 Posts: 116 Location: CHENNAI/NEW JERSEY - INDIA/USA
|
|
|
|
what is the RESPONSE=INVREQ on CECI REL PROGRAM(Prog name) |
|
Back to top |
|
|
Bill O'Boyle
CICS Moderator
Joined: 14 Jan 2008 Posts: 2501 Location: Atlanta, Georgia, USA
|
|
|
|
I know what it is, but you need to refer to the manuals (as all programmers do) to find the reason yourself.
We "assist" others, but when it's obvious the Tech wants this "given" to them, without resorting to any effort of finding it themselves, that's where our "free advice" goes away. |
|
Back to top |
|
|
Stefan
Active User
Joined: 12 Jan 2006 Posts: 110 Location: Germany
|
|
|
|
I recommend using the transaction NEWC instead of CEMT to do the job. NEWC is part of the Xpediter installation and does a few additional things to ensure a consistent load module refresh. |
|
Back to top |
|
|
quanzhong
New User
Joined: 12 Aug 2008 Posts: 46 Location: china
|
|
|
|
Code: |
CEMT S PROG(XXXXXX) PH
|
|
|
Back to top |
|
|
|