Trying to access a CA-View database via the following ISPF clist:
********************************* Top of Data **********************
PROC 0
CONTROL NOMSG NOLIST
ISPEXEC SELECT PGM(EE0XMSPF) PARM(xxxx.xxxx.NHST) NEWAPPL(SAR)
******************************** Bottom of Data ********************
Access is failing with the following messages:
EBCXMT98 EE0XMSPFTZ7Q6R 0373 :5G:1 EBCXST34 database index name not found in table - session ended
DSN=”xxxx.xxxx.NHST”
Release : 14.0
The reason for the EBCXST34 error is because the transaction issued was not found in the related EBCXMCTR table (CVDELOAD(EE0XMCTR)).
The client needed to an assembly of the EBCXMCTR table.
The EBCXMCTR table is implemented via member CVDEJCL(BROSXCTR).
Below is a sample EBCXMCTR table:
EBCXMOPT MSGLVL=CRIT,USERMAX=50
EBCXMTRN TRANID=VW1,INDEX=VIEW.SYSTEM1
EBCXMTRN TRANID=VW2,INDEX=VIEW.SYSTEM2
EBCXMTRN TYPE=GEN
END
The TRANID would be the transaction identifier, and INDEX would point to the related View database.