The client upgraded View to r14.0, and when their CICS users try to issue the "SAR" transaction, they receive error:
Release : 14.0
Component : CA View
The reason for the EBCXST32 error is because the SAR transaction issued was not found in the related EBCXMCTR table (CVDELOAD(EE0XMCTR)).
In the upgrade, the client had not done 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
For a SAR transaction, the TRANID would be SAR, and INDEX would point to the related View database.
As well, the definitions in CICS would need to be changed, for release 14.0, to define the EE0CI... modules.