Upgrading from SYSVIEW 15.0 to 16.0, on the DATACOM DCLIST screen, it showed four 15.1 MUF region names.
Four of the MUF lines are reflecting the same DSN of SAMPLE1.CABDLOAD. The DV represents the Development MUF.
The three other MUFs should have two different characters in the same position, M1 for Model, P1 for Production and Q1 for QA.
Checking the STEPLIB on the DBMUFDV, DBMUFM1, DBMUFP1 and DBMUFQ1 and each have its own unique CABDLOAD library.
Why didn't the DCLIST reflect the correct CABDLOAD from each MUF?
Cmd Name DCType|Release DatasetName
________ DBMUFDV DB 15.1 SAMPLE1.CABDLOAD
________ DBMUFM1 DB 15.1 SAMPLE1.CABDLOAD <--
________ DBMUFP1 DB 15.1 SAMPLE1.CABDLOAD <--
________ DBMUFQ1 DB 15.1 SAMPLE1.CABDLOAD <--
SYSVIEW R15.0 & R16.0
Here is a sample to code the DATACOM member, so the DCLIST will reflect the correct CABDLOAD from each MUF:
*===================================================
* Section: Default Definitions
*===================================================
SETDEFAULT
DSN SAMPLE1.CABDLOAD
VOLSER None
ENDDEFAULT
DEFINE JOBNAME DBMUFDV
DSN SAMPLE2.DBMUFDV.CABDLOAD
ENDDEFINE
DEFINE JOBNAME DBMUFM1
DSN SAMPLE2.DBMUFM1.CABDLOAD
ENDDEFINE
DEFINE JOBNAME DBMUFP1
DSN SAMPLE2.DBMUFP1.CABDLOAD
ENDDEFINE
DEFINE JOBNAME DBMUFQ1
DSN SAMPLE3.DBMUFQ1.CABDLOAD
ENDDEFINE
*=====================================================
* Section: Optional Definitions
*=====================================================
)EOF /* Logical End of File */
*=====================================================