We have CICS regions with the same name running on different LPARs and we would like to monitor these using MainView for CICS. Is this possible? If not, are there any workarounds we can use? |
Updated August 2019: MainView for CICS v6.9.00 introduced the option to use the CICS APPLID to identify the target CICS in Window mode views, instead of the CICS job/stc name. MainView for CICS does NOT support duplicate job names. The job name of the CICS region has to be unique within the PAS Plex (sysplex) for each CICS connected to MVCICS. This has been true since the product was first written. If you use duplicate job names - even if they run on different LPARs - unpredictable errors may occur. These include, but are not limited to, the following. Sporadic connection problems after restarting the CICS There are a few workarounds, as follows, arranged in order of desirability. 1) You should change your CICS job names to be unique across the LPARs encompassed by the MainView PAS Plex (ie - wherever a MainView CAS runs in the sysplex). This is the recommended solution. 2) You could change your procedures to use a stepname identifier or qualifier on the START command. The APPLID is the obvious example: S CICS.cicsappl Then the service points and communications subtasks - will be created uniquely for each CICS. Note: The context names would change to whatever you specified as the identifier on the START command. So, the applid, if you were to use that, would become the context name instead of the job name. The CT1000D message shows the name of the service point, which is normally the job name: CT1000D SERVICE POINT MVCICS /cicsappl CONNECT COMPLETED PAS1 And CREGION would display: W1 =CREGION==========(ALL======*=======) Note: it may also be necessary to change your TCP/IP definitions and any MVS MODIFY commands issued by automation.
Then there would be no problems caused by duplicate job names, but this is a bit extreme. You would have no knowledge of the remote PAS, and the Single System Image power of MainView would be diminished. Related Products:
|