Step 23--Tailor the QMF profile

The ENVIRONMENT column of the Q.PROFILE table enables a single AUTHID to have different profiles depending on the environment (TSO or CICS). When installed under TSO, QMF initially assigns everything in the ENVIRONMENT column the value of NULL. Next, a new row is added with an AUTHID of SYSTEM and an ENVIRONMENT entry of CICS.

If you use the same AUTHID in CICS and TSO, and you use command synonyms that contain TSO commands, change all NULL entries to TSO entries as shown:

UPDATE Q.PROFILES SET ENVIRONMENT='TSO' WHERE ENVIRONMENT = NULL

After you issue this statement, QMF uses the SYSTEM row for the CICS environment.

[ Previous Page | Next Page | Contents | Index ]