Writer instructions | |
---|---|
Page title | For most spaces, this page must be titled Space announcements. For spaces with localized content, this page must be titled Space announcements l10n. |
Purpose | Provide an announcement banner on every page of your space. |
Location | Move this page outside of your home branch. |
Guidelines |
Optionally editing the Subzero startup procedure (BRDPROC)
During customization, the Installation System creates a JCL procedure named BRDPROC, which initializes Subzero agents on an LPAR. You can change BRDPROC as needed.
The Installation System creates a copy of BRDPROC in the JCL data set and customizes the procedure with your installed libraries:
// TIM=1440
//EAGENT EXEC PGM=BRDJANUS,ACCT=&ACC,TIME=&TIM,MEMLIMIT=NOLIMIT
//STEPLIB DD DISP=SHR,DSN=@hlq.BMCLINK
// DD DISP=SHR,DSN=SYS1.CSSLIB
//DBCPRINT DD SYSOUT=*
//BMCPSWD DD DISP=SHR,DSN=@hlq.BMCPSWD
Statement | Description |
---|---|
PROC | Specifies BRDPROC as the procedure name and includes the ACC parameter in case the EAGENT step requires account information |
BRDJANUS | Checks elements in the environment and starts the DBC agent stub; the agent stub ultimately starts the Subzero controlling agent code as a task. Subzero agents start with a JOBNAME parameter to distinguish tasks that are based on the Subzero XML definition to DBC. |
STEPLIB | (required) Includes the BMC data sets that contain BRD, DBC, LGC, SCC, USC, and Dignus modules. The library names depend on options specified during installation. If one or more IMS subsystems will participate in Subzero redirection, the STEPLIB statement might need to include the library that contains the DFSPZPxx module; this module contains startup parameters for the IMS database resource adapter (DRA). For more information, see IMS-requirements. All libraries in the STEPLIB concatenation must be APF authorized. |
DBCPRINT | Identifies the data set to which the DBC external agent stub writes a small amount of information |
BMCPSWD | Identifies the data set that contains the BMC license keys (CPU authorization passwords) that enable Subzero use in your environment |
BRDPRINT and BRDERROR (not shown) | Identify the data sets that will contain message and error information generated during execution. The product dynamically allocates these data sets if they are not defined in the procedure. |
To edit the startup procedure
- Access BRDPROC from the JCL library.
- Edit BRDPROC as required.
Related topic