CSLOM procedure
Use the CSLOM procedure to dynamically override the settings in the OM initialization parameters member of the IMS PROCLIB data set.
You can start OM as a started procedure or with JCL. A sample startup procedure called CSLOM can be found in IMS.SDFSISRC.
Parameters
You can specify the following execution parameters on the startup procedure for OM. Some parameters that are required for OM initialization can also be specified in CSLOIxxx member of the IMS PROCLIB data set.
- ARMRST=
- BPECFG=
- BPEINIT=
- CMDLANG=
- CMDSEC=
- OMINIT=
- OMNAME=
Parameters are described in Parameter descriptions for IMS procedures.
Sample OM startup procedure
The JCL for CSLOM is shown here.
//******************************************************************
//* OM Procedure
//*
//*
//* Parameters:
//* BPECFG - Name of BPE member
//* OMINIT - Suffix for your CSLOIxxx member
//* PARM1 - other override parameters:
//* ARMRST - Indicates if ARM should be used
//* CMDLANG - Language for command description text
//* CMDSEC - Command security method
//* OMNAME - Name of OM being started
//*
//* example:
//* PARM1='ARMRST=Y,CMDSEC=R,OMNAME=OM1,CMDLANG=ENU'
//*
//***********************************************************@SCPYRT**
//* *
//* Licensed Materials - Property of IBM *
//* *
//* "Restricted Materials of IBM" *
//* *
//* 5635-A01 (C) Copyright IBM Corp. 2011 *
//* *
//***********************************************************@ECPYRT**
//*
//CSLOM PROC RGN=3000K,SOUT=A,
// RESLIB='IMS.SDFSRESL',
// BPECFG=BPECONFG,
// OMINIT=000,
// PARM1=
//*
//OMPROC EXEC PGM=BPEINI00,REGION=&RGN,
// PARM='BPECFG=&BPECFG,BPEINIT=CSLOINI0,OMINIT=&OMINIT,&PARM1'
//*
//STEPLIB DD DSN=&RESLIB,DISP=SHR
// DD DSN=SYS1.CSSLIB,DISP=SHR
//PROCLIB DD DSN=IMS.PROCLIB,DISP=SHR
//SYSPRINT DD SYSOUT=&SOUT
//SYSUDUMP DD SYSOUT=&SOUT
//*