HP StorageWorks P9000 for Business Continuity Manager Software Installation Guide (T5253-96052, May 2011)

NOTE: In an environment in which the DBCS functionality is used, concatenate HPQYPNLT
to the alternate panel library (DD name ISPPALT) as well. For details, see the ISPF User's Guide
Volume I.
3. Concatenate the message library HPQYMSGT to the DD name ISPMLIB.
NOTE: In an environment in which the DBCS functionality is used, concatenate HPQYMSGT
to the alternate message library (DD name ISPMALT) as well. For details, see the ISPF User's
Guide Volume I.
4. Concatenate the table library HPQYTABT to the DD name ISPTLIB.
When you concatenate datasets, determine RECFM and LRECL, considering the attributes in
“DASD Storage Attributes for Target Libraries” (page 17) and those of the datasets to be
concatenated. For example, if DSORG=PO and RECFM=FB, LRECL must be the same in all
the datasets. For details, see the DFSMS: Using Data Sets. For details on how to change
RECFM and LRECL, see the information on IEBGENR and IEBCOPY in the DFSMSdfp Utilities.
Once configured, YKSTART can be started by selecting 6 Command in the ISPF Primary
Option Menu and included as a selection in a site-specific selection menu.
Starting YKSTART Dynamically
You can start YKSTART by dynamically concatenating the libraries required to execute YKSTART.
The REXX Exec library HPQYEXET or HPQYEXVT can be dynamically concatenated by the
ALTLIB command of TSO/E.
The panel library HPQYPNLT, message library HPQYMSGT, and table library HPQYTABT can
be dynamically concatenated by the LIBDEF service of ISPF.
The example below shows how to use the ALTLIB command and LIBDEF service.
By executing the REXX script below during ISPF startup, you can start Business Continuity Manager
with individual libraries being dynamically concatenated to the DD names SYSEXEC, ISPPLIB,
ISPMLIB, and ISPTLIB.
/* REXX */**********************************************************/
ADDRESS TSO "ALTLIB ACTIVATE APPLICATION(EXEC)",
"DATASET('HPQYK.Vnnnnnn.HPQYEXET')";
ADDRESS ISPEXEC;
"LIBDEF ISPMLIB DATASET ID('HPQYK.Vnnnnnn.HPQYMSGT') STACK";
"LIBDEF ISPPLIB DATASET ID('HPQYK.Vnnnnnn.HPQYPNLT') STACK";
"LIBDEF ISPTLIB DATASET ID('HPQYK.Vnnnnnn.HPQYTABT') STACK";
"SELECT CMD(%YKSTART) NEWAPPL(YK) PASSLIB";
ADDRESS ISPEXEC;
"LIBDEF ISPTLIB";
"LIBDEF ISPPLIB";
"LIBDEF ISPMLIB";
ADDRESS TSO "ALTLIB DEACTIVATE APPLICATION(EXEC)";
Return 0;
26 Installing Business Continuity Manager