Previous Topic

Next Topic

Book Contents

Book Index

Example 1

In this example, Management Class SHORTERM is assigned to all tape data sets that end with TEMP.

Note that the same Storage Class (ATLSTK) is assigned to all tape data sets. It is assigned only to enable DFSMS to invoke a Management Class ACS routine.

Figure 46 Storage Class Adjustments

/*****************************/

/* DEFINE TAPE UNIT NAMES      */

/*******************************/

FILTLIST TAPES INCLUDE(’0420’,’0421’,’0460’,’0461’)

/******************************************/

/* SET A STORAGE** CLASS FOR TAPE DATASETS  */

/******************************************/

WHEN (&ACSENVIR='CTTOPEN' &&  &UNIT=&TAPES)

Figure 47 Management Class Adjustments

/*******************************************************/

/* SET A MANAGEMENT CLASS FOR TAPE  '*.TEMP' DATASETS  */

/*******************************************************/

WHEN (&ACSENVIR='CTTOPEN' &&  &LLQ='TEMP')

SET &MGMTCLAS = 'SHORTERM'

Parent Topic

Examples