IOA Utilities

Some utilities prefixed by IOA replace corresponding utilities prefixed by CTM in previous versions. In such cases, the old utilities are supported for your convenience; however, you should use the IOA utilities.

IOABLCAL – Build Calendars

The scheduling of jobs, missions and rules in the IOA environment is frequently based on calendars. A data center can use different calendars for different scheduling requirements.

Table 15 Scheduling Calendars

Calendar

Description

WORKDAYS

All working days in the year

HOLIDAYS

All nonstandard holidays

ENDOFMON

Business end-of-month scheduling

NOTEOFMN

All working days except end-of-month days

In many cases, a calendar is related to, or derived from, another calendar or a combination of two other calendars. For example, in the calendars listed above, calendar NOTEOFMN can be derived from a combination of the WORKDAYS and ENDOFMON calendars.

When calendars are related, a change to one calendar frequently affects other calendars. This can make manual maintenance of calendars time consuming and error prone. The IOABLCAL utility simplifies and automates calendar maintenance.

Through parameters supplied to the utility, the user specifies two existing calendars and the operation (or formula) that determines how the calendars are combined to build a new calendar.

The new calendar created by the utility is a regular calendar. It can be viewed using Option 8 (Calendars) of the IOA Primary Option menu and it can be used as an input calendar in subsequent runs of the utility. Thus, using several basic calendars, numerous other calendars can be created.

It is recommended that all steps that calculate calendars be collected into one job, and that the job be run once a day. This refreshes the calendars in the event that changes are made to the basic calendars.

IOABLCAL Parameters

Parameters are supplied to the utility either using DD statement DABCLIN (or SYSIN) or using PARM. You can specify any number of parameter statements. The parameter statement syntax is

Copy
calendar1 operator calendar2=calendar3

where

Table 16 IOABLCAL parameters

Parameter

Description

calendar1, calendar2

Input calendars

operator

One of the following operators

+, –, *, <W nn, >W nn, <>W, ><W

calendar3

Resulting calendar

If the operation is +, calendar3 contains all days scheduled in calendar1 and additionally all days scheduled in calendar2.

If the operation is –, calendar3 contains all days scheduled in calendar1 excluding those days scheduled in calendar2.

If the operation is *, calendar3 contains all days scheduled in calendar1 that are also scheduled in calendar2. The day has to be marked for execution in both calendars in order to be marked for execution in calendar3.

If calendar2 is a relative calendar, additional logic is required to handle the * operation mentioned above. (A relative calendar is a calendar that contains days marked + or - instead of, or in addition to, days scheduled or not scheduled.) Each day in calendar2 that contains a + or – sign is checked against the same day in calendar1. If the day is marked for execution in calendar1, it is marked for execution in calendar3. However, if the day is not marked for execution in calendar1, the result depends on how the day was marked in calendar2:

  • If the day was marked + in calendar2, the closest next day marked for execution in calendar1 is marked for execution in calendar3.

  • If the day was marked – in calendar2, the closest previous day marked for execution in calendar1 is marked for execution in calendar3.

Operations <W nn and >W nn create a new calendar (calendar3) by shifting the days in an old calendar (calendar1) a specified number of working days according to the specified workdays calendar (calendar2):

  • Symbol < indicates that days are shifted to the left (meaning, to preceding days).

  • Symbol > indicates that days are shifted to the right (meaning, to subsequent days).

  • The number of working days to shift is nn.

The logic for operations <W nn and >W nn is as follows:

  • Each day marked for execution in calendar1 is checked against calendar2.

    • If the same day is a working day in calendar2, nn working days in calendar2 are counted in the direction of the shift and the resulting day is marked as a working day in calendar3.

    • If the same day is not a working day in calendar2, the closest working day in the direction of the shift is identified in calendar2. From that working day, nn working days in calendar2 are counted in the direction of the shift and the resulting day is marked as a working day in calendar3.

  • If operation <>W or ><W is specified, then for each working day (meaning, day marked for execution) in calendar1

    • If the same day is a working day in calendar2, it is marked as a working day in calendar3.

    • If the same day is not a working day in calendar2, the closest working day (in either direction) is marked as a working day in calendar3.

    • If two working days are equally close (meaning, the same number of days before and after), the day selected depends on the parameter specified:

      • If <>W was specified, the earlier working day is selected as the working day for calendar3.

      • If ><W was specified, the later working day is selected as the working day for calendar3.

If specifying operator *,<W nn, >W nn, <>W, or ><W, calendars must be defined in year order, must contain the same years, and must not contain more than 15 years.

Activating the IOABLCAL Utility

Copy
// EXEC IOABLCAL
calendar1 operator calendar2 = calendar3

where operator is +, –, *, <W nn, >W nn, <>W or ><W

IOABLCAL Return Codes

Table 17 IOABLCAL Return Codes

Code

Description

0

Operation performed successfully

8 and above

Operation failed

Examples for IOABLCAL

IOABLCAL Example 1

The following parameter specification is passed to the utility:

Copy
calendar1 * calendar2 = calendar3

Assuming the following calendars

Copy
 S ----------- S ----------- S -------
 1 2 3 4 5 6 7 8 9 + 1 2 3 4 5 6 7 8 9         calendar1
 Y Y Y Y Y   Y Y Y Y Y Y           Y
 S ----------- S ----------- S -------

and

Copy
 S ----------- S ----------- S -------
 1 2 3 4 5 6 7 8 9 + 1 2 3 4 5 6 7 8 9         calendar2
 Y Y + -   +             +   -
 S ----------- S ----------- S -------

the resulting new calendar is

Copy
 S ----------- S ----------- S -------
 1 2 3 4 5 6 7 8 9 + 1 2 3 4 5 6 7 8 9         calendar3
 Y Y Y Y     Y         Y           Y
 S ----------- S ----------- S -------

Note the following points in this example:

  • Since the operation is *, days 1 and 2, that are marked for execution in both calendar1 and calendar2, is marked for execution in calendar3.

  • Day 3 is marked + in calendar2 and is marked for execution in calendar1. Therefore, it is marked for execution in calendar3.

  • Day 4 is marked - in calendar2 and is marked for execution in calendar1. Therefore, it is marked for execution in calendar3.

  • Day 5 is not marked in calendar2. Therefore, even though it is scheduled in calendar1, it is not marked for execution in calendar3. This same reasoning applies to days 8, 9, 10, and 11. However, days 7, 12, and 18 are marked for execution for other reasons described below.

  • Day 6 is marked + in calendar2 and is not marked for execution in calendar1. The closest following day marked for execution in calendar1 is day 7. Therefore, day7 is marked for execution in calendar3.

  • Day 13 is marked + in calendar2 and is not marked for execution in calendar1. The closest following day marked for execution in calendar1 is day 18. Therefore, day 18 is marked for execution in calendar3.

  • Day 15 is marked - in calendar2 and is not marked for execution in calendar1. The closest preceding day marked for execution in calendar1 is day 12. Therefore, day 12 is marked for execution in calendar3.

IOABLCAL Example 2

The following parameter specification is passed to the utility:

Copy
OLDCAL <W 2 WORKDAYS = NEWCAL

Assuming the following calendars

Copy
 S - - - - - - S - - - - - - S - - - -
 1 2 3 4 5 6 7 8 9 + 1 2 3 4 5 6 7 8 9
         Y         Y Y Y     Y               OLDCAL
 S - - - - - - S - - - - - - S - - - -

and

Copy
 S - - - - - - S - - - - - - S - - - -
 1 2 3 4 5 6 7 8 9 + 1 2 3 4 5 6 7 8 9
     Y Y Y Y Y     Y Y Y Y     Y Y               WORKDAYS
 S - - - - - - S - - - - - - S - - - -

the resulting new calendar is

Copy
 S - - - - - - S - - - - - - S - - - -
 1 2 3 4 5 6 7 8 9 + 1 2 3 4 5 6 7 8 9
     Y     Y Y     Y Y                           NEWCAL
 S - - - - - - S - - - - - - S - - - -

Note the following points in this example:

  • Operation <W 2 specifies that for each working day in OLDCAL, the IOABLCAL utility finds the corresponding working day in WORKDAYS, and then shift two workdays to the left.

  • The first workday in OLDCAL is day 5. This is also a workday in WORKDAYS. The 2nd workday to the left of day 5 in WORKDAYS is day 3, that becomes a workday in NEWCAL.

  • The next workday in OLDCAL is day 10. This is also a workday in WORKDAYS. The 2nd workday to the left of day 10 in WORKDAYS is day 6, that becomes a workday in NEWCAL.

  • The next workday in OLDCAL is day 11. This is also a workday in WORKDAYS. The 2nd workday to the left of day 11 in WORKDAYS is day 7, that becomes a workday in NEWCAL.

  • The next workday in OLDCAL is day 12. This is also a workday in WORKDAYS. The 2nd workday to the left of day 12 in WORKDAYS is day 10, that becomes a workday in NEWCAL.

  • The next workday in OLDCAL is day 15. This is not a workday in WORKDAYS. The closest workday to the left, in WORKDAYS, is day 13. The 2nd workday to the left of day 13 in WORKDAYS is day 11, that becomes a workday in NEWCAL.

IOABLCAL Example 3

The following parameter specification is passed to the utility:

Copy
OLDCAL ><W   WORKDAYS = NEWCAL

Assuming the following calendars

Copy
 S - - - - - - S - - - - - - S - - - -
 1 2 3 4 5 6 7 8 9 + 1 2 3 4 5 6 7 8 9
         Y     Y Y     Y     Y               OLDCAL
 S - - - - - - S - - - - - - S - - - -

and

Copy
 S - - - - - - S - - - - - - S - - - -
 1 2 3 4 5 6 7 8 9 + 1 2 3 4 5 6 7 8 9
 Y Y Y Y Y   Y     Y Y Y Y       Y               WORKDAYS
 S - - - - - - S - - - - - - S - - - -

the resulting new calendar is

Copy
 S - - - - - - S - - - - - - S - - - -
 1 2 3 4 5 6 7 8 9 + 1 2 3 4 5 6 7 8 9
         Y   Y     Y   Y         Y           NEWCAL
 S - - - - - - S - - - - - - S - - - -

Note the following points in this example:

  • Operation ><W specifies that for each working day in OLDCAL, the IOABLCAL utility finds the closest working day in WORKDAYS, and make that day a workday in NEWCAL.

  • The first workday in OLDCAL is day 5. This is also a workday in WORKDAYS, so it becomes a workday in NEWCAL.

  • The next workday in OLDCAL is day 8. This is not a workday in WORKDAYS. The next closest workday in WORKDAYS is day 7, so day 7 becomes a workday in NEWCAL.

  • The next workday in OLDCAL is day 9. This is not a workday in WORKDAYS. The next closest workday in WORKDAYS is day 10, so day 10 becomes a workday in NEWCAL.

  • The next workday in OLDCAL is day 12. This is also a workday in WORKDAYS, so it becomes a workday in NEWCAL.

  • The next workday in OLDCAL is day 15. This is not a workday in WORKDAYS. The next closest workdays in WORKDAYS are days 13 and 17 (that are equally close to day 15). Since the parameter operation statement ><W began with symbol >, the value to the right (meaning, the subsequent day) is chosen. Therefore, day 17 becomes a workday in NEWCAL.

IOACABPR – Emergency CAB Control Block Disconnect

The IOACABPR utility forces a disconnect of the CAB control block, a cross-product control block used to anchor information. The CAB control block is anchored indirectly from the MVS CVT, at offset x’AC’ of the customer table.

This utility is used in appropriate emergencies only. It is recommended that it not be used unless specifically advised by BMC Customer Support.

The utility can be activated using job IOACABJ located in the IOAprefix.INSTALL library. The IOACABPR utility procedure is located in the IOAprefix.PROCLIB library.

Activating the IOACABPR Utility (and Example)

Copy
//CABSTEP EXEC IOACABPR,FUNC=DISC

IOACABPR Return Codes

Table 18 IOACABPR Return Codes

Code

Description

0

Operation performed successfully

other

Operation failed

IOACCDSL – Data Set Listing tool

  • The Data Set Listing tool (IOACCDSL) can be used to perform the following tasks on an IOA environment:

    Cloning an environment (For more information about the cloning process, see the INCONTROL for z/OS Installation Guide: Installing.)

  • Backing up an environment

For both these tasks, the Data Sets Listing tool produces a complete list of all data sets of the specified IOA environment in a plain-text format.

Activating the IOACCDSL utility

The Data Sets Listing tool is activated from ICE, using the Cloning, Change Deployment, and Maintenance options. These are accessible by appropriately selecting either the Clone, Deploy IOA Environment or the Maintain your Environment option from the main ICE screen.

IOACCDSL Return Codes

Table 19 IOACCDSL Return Codes

Code

Description

0

Operation performed successfully.

4

Operation performed successfully; warning messages were issued.

16

Operation failed.

990

Severe internal error.

IOACCND – Copy or Resize IOA Conditions File

This utility copies the contents of the IOA Conditions file to another file that may or may not be the same size or version.

To change the size of the IOA Conditions perform the following steps:

  1. Enter ICE and select Customization.

  2. Select Environment for Processing.

  3. In the Customization screen, set Product ID to IOA and select Product Customization.

  4. Select major step 2 "Customize IOA Dataset Parameters."

  5. Select minor step 3 "Conditions File(s) Parameters."

  6. Change the parameter values.

  7. Perform step "Save Parameters into Product Libraries."

  8. Perform step "Format IOA Conditions File."

  9. Run the IOACCND utility. The utility copies the current IOA Conditions to the new file.

IOACCND Parameters and DDNAMEs

Table 20 IOACCND Parameters

Parameter

Description

PARM

Specify ‘MODE=COPY’.

OLDCND

Name of the old IOA Conditions file

NEWCND

Name of the new IOA Conditions file

For details, see sample job IOACCND in the IOA JCL library.

Activating the IOACCND Utility (Example)

Figure 1 IOACCND – Example

Copy
// EXEC PGM=IOACPC,PARM=’MODE=COPY’
// OLDCND=’IOA.old.CND’, OLD CONDITIONS FILE
// NEWCND=’IOA.new.CND’, NEW CONDITIONS FILE

IOACCND Return Codes

Table 21 IOACCND Return Codes

Code

Description

0

Operation performed successfully.

8

Failure to initialize the IOAENV environment because the SNC file is in use.

28

Insufficient storage. Increase the amount of storage specified in the REGION parameter.

32

Unable to open the input IOA Conditions file.

36

Unable to open the output IOA Conditions file.

40

Unable to open the output IOA Conditions file.

44

The number of records per day in the R0 control record for the new CND file is incorrect. The value must be

    • greater or equal to the value in the old CND file

    • and equal to the CNDREC# parameter in the new IOAPARM member

For more information about the CNDREC# installation parameter, refer to the INCONTROL for z/OS Installation Guide: Installing.

48

An unexpected end of file is detected for the old CND file because the number of records per day in the R0 control record (old CNDREC#) does not match the number of records in the file.

For more information about the CNDREC# installation parameter, refer to the INCONTROL for z/OS Installation Guide: Installing.

52

Unsupported PARM value. The currently supported PARM value is 'MODE=COPY'.

Resizing ALTCND

The copy function of the IOACCND utility can be used to resize ALTCND, the IOA mirror condition file.

IOACCRNM – Renaming tool

The Renaming tool (IOACCRNM) can be used to perform the following tasks in the cloned environment:

  • adjustment of an IOA environment to new values of parameters

  • optional allocation of missing user data sets

Activating the IOACCRNM utility

You can run IOACCRNM in either of the following ways:

  • From the TSO command line:

    Copy
    EXEC 'basepref.INSTALL(IOACCRNM)' 'ENVID(ENVID1) MODE(FULL)'
  • By submitting the IOARNM job from the IOA JCL library.

The messages of the utility are sent to the ilprefa.ICELOG data set and, when the utility is invoked from a job, to a data set allocated to the DD SYSTSPRT.

The preferred way for running the Renaming tool is by using the IOARNM sample job located in the ilprefa.JCL.

After running the Renaming tool, do the following:

  • Review and adjust the ECAPARMx parameter members.

  • When the cloning is performed with the USER parameter set to Y, review the operational libraries to ensure that there are no references to the base (source) installation.

IOACCRNM Input

The Renaming tool processes the internal ICE data of the specified IOA environment. The IOA environment is specified with the ENVID parameter. In addition, the tool requires the following inputs:

IOACCRNM Parameters

Table 22 IOACCRNM Parameters

Parameter

Description

BASEPREF

Value of the base libraries prefix. This parameter is only required when the tool is invoked from a job, otherwise the parameter is ignored.

ENVID

Name of the IOA environment.

MODE

Specifies the execution mode.

Valid values are:

    • FULL - performs the full adjustment of the cloned environment. If the package is created without user files, these files will be allocated and formatted from scratch as it is done during installation process. If the cloning package contains the user files, these files will not be created but the utility will adjust these files to the new IOA environment.

    • ALLOC - only allocates missing user data sets

When the tool is invoked from the ilprefa.JCL(IOARNM) sample job, the value of IOA installation libraries prefix must be specified in the job with the ILPREFA parameter.

When performing cloning, the value for the ENVID parameter must be the same as it was specified for the ENVID parameter for the Data Set Listing tool, but the value for the BASEPREF parameter is the new value of the base libraries prefix of the cloned system.

Table 23 List of the prefixes in basepref.RNM that are handled both by the DFDSS utility and by the Renaming tool

Prefix name

Description

BASEPREF

Base libraries prefix

DBPREFA

Prefix of IOA core

DBPREFB

Prefix of Control-M/Analyzer repository

DBPREFD

Prefix of Control-D repository

DBPREFM

Prefix of Control-M repository

DBPREFT

Prefix of Control-M/Tape database

ILPREFA

Prefix of IOA installation libraries

ILPREFB

Prefix of Control-M/Analyzer installation libraries

ILPREFD

Prefix of Control-D installation libraries

ILPREFJ

Prefix of Control-M JCL Verify installation libraries

ILPREFM

Prefix of Control-M installation libraries

ILPREFO

Prefix of Control-O installation libraries

ILPREFT

Prefix of Control-M/Tape installation libraries

OLPREFA

Prefix of IOA operation libraries

OLPREFB

Prefix of Control-M/Analyzer operation libraries

OLPREFD

Prefix of Control-D operation libraries

OLPREFJ

Prefix of Control-M JCL Verify operation libraries

OLPREFM

Prefix of Control-M operation libraries

OLPREFO

Prefix of Control-O operation libraries

OLPREFR

Prefix of Control-M/Restart operation libraries

OLPREFT

Prefix of Control-M/Tape operation libraries

OLPREFV

Prefix for Control-V operation libraries

STATFILE

Name of Control-M job execution statistics file

STEPLIB

Full name of IOA LOAD library

STEPLIBE

Full name of IOA LOADE (PDSE) library

SPCPREF

SMP/E global zone cluster CSI prefix

SPAPREF

SMP/E auxiliary datasets prefix

SPDPREF

SMP/E distribution data sets prefix

Table 24 List of the parameters in basepref.RNM that are handled by the Renaming tool

Parameter

Description

AMPREF

Prefix for user created CDAM files

AMPREFD

Prefix for Control-D monitor CDAM files

AMPREFR

Prefix of Control-M/Restart archived SYSOUT

CTM2SBS

Control-M monitor to CMEM and Control-O monitors communication file

CTOQNAM

QNAME for Control-O ENQ requests

CTTQNAM

QNAME for Control-M/Tape ENQ requests

DUALDC

SMS Data class name.

DUALMC

SMS Management class name.

DUALSC

SMS Storage class name.

DUALUNIT

Unit name for IOA Conditions mirror file.

DUALVOL

Volume serial number for IOA Conditions mirror file.

IXHPREF

High level qualifier for index files

JB1PREF

Default prefix of JOBSDSN1 files

JCL1

First additional JCL

JCL2

Second additional JCL

JOBCARD

Jobcard data

JOBNAME

Job name

JOBPOS

Position of JOB keyword in job statement

MLPREFA

Maintenance data sets prefix

PORTAS

Default port number for the Control-D Application Server

PORTCM

Default port number for Control-M/Configuration Manager

PORTEM

Default port number for Control-M/Enterprise Manager

PORTFAS

Default port number for Control-D File Application Server

PROCLIB

MVS started tasks library

PROCPRFA

First 3 characters of IOA JCL procedures

PROCPRFB

First 3 characters of Control-M/Analyzer JCL procedures

PROCPRFD

First 3 characters of Control-D JCL procedures

PROCPRFM

First 3 characters of Control-M JCL procedures

PROCPRFO

First 3 characters of Control-O JCL procedures

PROCPRFR

First 3 characters of Control-M/Restart JCL procedures

PROCPRFT

First 3 characters of Control-M/Tape JCL procedures

PROCPRFV

First 3 characters of Control-V JCL procedures

QNAME

QNAME for ENQ requests

SHRQNAM

Shared resource QNAME

SITEPROC

Site's procedure library

SSNAME

IOA subsystem name

SVCNUM

Control-M/Tape SVC number

VSVOLM

Volume name for Control-M statistics file

WRKPREF

Prefix of print plan files

IOACCRNM Output

The Renaming tool adjusts all copied libraries and information saved in these libraries to the new file names and parameters values. In addition, it allocates the files required for the products using the new names.

In addition, it produces a list of all post-cloning activities that the user should perform manually.

IOACCRNM Return Codes

Table 25 IOACCRNM Return Codes

Code

Description

0

Operation performed successfully.

4

Operation performed successfully; warning messages were issued.

12

Input validation error.

16

Operation failed.

20

Allocation of input data set or member failed.

990

Severe internal error.

IOACLB – Produce XML Calendar Files

The IOACLB utility provides a method of converting Control-M for z/OS calendar definitions to Control-M calendar definitions. The IOACLB utility exports one or more Control-M for z/OS calendar libraries, or selected members in the libraries, to an XML file. The XML file is used as a mass input to the defcal Control-M utility for importing the calendar definitions to a specified Control-M/Server.

IOACLB Parameters

The IOACLB utility accepts the following input control statements (as 80-byte card images) in the DAINCLB file:

Figure 2 DAINCLB file - input control statements for IOACB

Copy
* comment
DATACENTER=data-center-name-1
CALENDAR-LIB=library-name1
CAL=calendar-n*m?1
CAL=calendar-nam?2
DATACENTER=data-center-name-2
CALENDAR-LIB=library-name2
CAL=calendar-name3

Pass-through parameter

DATACENTER is the name of the Control-M/Server and is a mandatory pass-through parameter to the defcal utility that can be specified for a particular calendar. For more information, see the section about the defcal Control-M utility in the Control-M Utility Guide.

Action parameters

  • Multiple sets of CALENDAR-LIB and CAL statements are permitted.

  • CALENDAR-LIB and CAL statements refer to the library and member names of the Control-M for z/OS calendar or Rule-Based calendar library that the IOACLB utility is converting. At least one CAL statement for each CALENDAR-LIB statement is required.

  • Masking, using ? and * wildcards, in the CAL parameter is permitted.

  • Comment statements begin with an asterisk (*) in the first column of the line.

Calendar types

IOACLB supports the following calendar types:

  • Regular (days marked with Y, N or blank)

  • Periodic (days marked with a period indicator)

  • Relative (days marked with Y, N, +, - or blank)

    For more information, see IOABLCAL – Build Calendars.

  • RBC - Rule-Based calendars (For more information, see the Control-M User Guide). The Control-M CTMTLB utility is invoked to create the XML file for RBCs.

OUTPUT file

The IOACLB utility produces the CALXML output file. The CALXML file contains statements in XML format that are suitable as input to the defcal Control-M utility. The file must have the following attributes: RECFM=FB, LRECL=4095. These statements are in standard EBCDIC format, which must be transformed to ASCII format before being used as input to the defcal utility. When transforming the file from EBCDIC to ASCII, do not specify the CRLF (Carriage Return and Line Feed) file option.

Activating the IOACLB Utility

A sample job to activate the utility can be found in the IOACLB member in the IOA JCL library. The DD statements used by the CTMTLB utility are also required when processing Rule-Based calendar libraries.

IOACLB Return Codes

Table 26 IOACLCND Return Codes

Code

Description

0

The IOACLB utility ended successfully.

4

Warning messages. For example, a calendar contains both periodic and non-periodic year definitions. Check the output referenced by the SYSPRINT DD statement for a message indicating the cause of the warning. Correct the input statements or calendar and resubmit the job.

8

An error occurred while analyzing the input stream.

Check the output referenced by the SYSPRINT DD statement for a message indicating the cause of the problem. Correct the input statements and resubmit the job.

12

A severe error occurred. Check the output of the job for messages indicating the source of the problem. If you are unable to correct the problem, contact your INCONTROL administrator.

Example for IOACLB

To import the CALDEF calendar definition to the following Control-M/Servers: CTM-DS-Local and CTM-DS-Unix, specify the following control parameters:

Copy
//DAINCLB DD *
DATACENTER=CTM-DS-Local
CALENDAR-LIB=IOA.CALENDAR.LIB
CAL=CALDEF
DATACENTER=CTM-DS-Unix
CALENDAR-LIB=IOA.CALENDAR.LIB
CAL=CALDEF
/*

Figure 3 Sample XML produced by IOACLB - when CALDEF is a Regular Calendar

Copy
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE DEFCAL SYSTEM "DEFCAL.DTD">
<DEFCAL>
<CALENDAR
DATACENTER="CTM-DS-Local "
NAME="CALDEF"
TYPE="Regular">
<YEAR
NAME="2010"
DAYS="YYYYYYYYYYYYYYYYYYNYYYYYYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYNNNYYYYYYYY
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
YYYYNNYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYNYYYYYYYYYYYYYY
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYNNNY
YYYYYYYYYYYYYYYYYYYY"
DESCRIPTION="Calendar for 2010."/>
</CALENDAR>
</DEFCAL>
  • The DAYS parameter value contains either 366 or 365 characters depending on whether the year is a leap year.

  • The utility accepts a maximum of 4000 characters in the DESCRIPTION parameter.

  • For periodic calendars, DAYS values are translated as follows:

    • & = &amp

    • ‘ = &apos

    • " = &quot

    • > = &gt

    • < = &lt

The above special characters are similarly treated in the DESCRIPTION parameter.

Figure 4 Sample XML produced by IOACLB - when CALDEF is a Rule-Based Calendar

Copy
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE DEFCAL SYSTEM "DEFCAL.DTD">
<DEFCAL>
<RULE_BASED_CALENDAR
DATACENTER="CTM-DS-Local "
NAME="RULECAL"
DAYS="1"
DAYS_AND_OR="AND"
WEEKDAYS="5"
DAYSCAL="CALDEF"
MAXWAIT="05"
JAN="1" />
</DEFCAL>

IOACLCND – Clean the IOA Conditions File

This utility cleans the IOA Conditions file of conditions that are no longer required. It is recommended that this utility be activated as part of IOA maintenance.

If the IOA Conditions file is shared across multiple CPUs, use an enqueue manager (such as MIM or GRS) to prevent simultaneous update of the file. For more information, see the description of the QNAME and SHRQNAM parameters in the IOA installation chapter of the INCONTROL for z/OS Installation Guide: Installing.

IOACLCND Parameters

Unless the utility is instructed otherwise using parameters, it deletes all prerequisite conditions (except those whose date reference is STAT) in the IOA Conditions file.

The utility outputs a list of all the deleted prerequisite conditions.

Prerequisite conditions that must not be deleted (for example, prerequisite conditions needed throughout the year) are specified by means of control statements, that are specified using DD statement DACRSIN or SYSIN. The formats of these statements are displayed below, followed by explanations:

IGNORE statements instruct the utility not to delete the indicated prerequisite conditions, as follows:

  • An IGNORE COND statement instructs the utility not to delete the indicated prerequisite condition under any circumstances.

  • An IGNORE CONDIN statement instructs the utility not to delete the indicated prerequisite conditions if the utility determines that the prerequisite conditions are referenced conditions. A referenced condition is a prerequisite condition appearing in the IOA Conditions file at the same time that it appears as an IN condition in an active job, mission or rule (for example, one that is currently present in the Active Jobs file or Active Missions file).

Conversely, SELECT {COND|CONDIN} statements instruct the utility to delete the prerequisite conditions specified. A customer who wants to delete only those statements specified in the SELECT COND statement should specify IGNORE COND * as the last statement.

IGNORE and SELECT statements can contain the following values:

  • cond-prefix specifies the prefix of prerequisite conditions. An asterisk indicates all prerequisite conditions.

  • If a FROM or TO combination is supplied, the specified condition is processed by the SELECT/IGNORE statement only if its date is in the date range.

  • date can be either a specific date in the site defined standard (mmddyy, ddmmyy or yymmdd) or a relative date. A relative date is specified in the format -n, where n is the number of days before the current date (for example, -5 means five days before the current date). Relative and specific dates can be mixed (for example, a specific FROM date and a relative TO date).

When a FROM and/or TO date is not specified, the current date is the default for the unspecified date. The TO date (regardless of whether specific, relative or assumed) cannot precede the FROM date.

Prerequisite conditions whose date reference is STAT are ignored by this utility.

CONTROLM and CONTROLD statements indicate whether the utility checks prerequisite conditions in the Active Jobs file and/or the Active Missions file, respectively, if a CONDIN-type condition statement is specified. By default, each of these files is checked if its respective product is installed (according to IOA installation options). These statements can be used to override the default. You can specify either, both or neither of these statements.

These statements can impact the result of a CONDIN-type condition statement because the utility cannot determine that a prerequisite condition is referenced unless it can check the Active Jobs or Missions file for the job or mission containing the IN prerequisite condition.

Valid values for these statements are described below:

Table 27 Control-M and Control-D Statements

Statement

Description

CONTROLM

Determines whether the Control-M Active Jobs file is checked during the cleanup process of the IOA Conditions file. Optional. Valid values are:

  • YES – Check the Active Jobs file. Default (if Control-M is installed).

  • NO – Do not check the Active Jobs file. Default (if Control-M is not installed).

CONTROLD

Determines whether the Control-D Active Missions file is checked during the cleanup process of the IOA Conditions file. Optional. Valid values are:

  • YES – Check the Active Jobs file. Default (if Control-D is installed).

  • NO – Do not check the Active Jobs file. Default (if Control-D is not installed).

The utility can be run simultaneously with the Control-M and the Control-D monitors.

If the job is submitted under Control-M, AutoEdit variables are supported.

Activating the IOACLCND Utility

Copy
// EXEC IOACLCND

Specifying AutoEdit Variables and Functions

AutoEdit variables can be specified for any of the above parameters. These variables are especially useful for specifying relative date ranges in the FROM and TO parameters.

AutoEdit functions can be used to set variables and these variables can then be used in the parameters of the utility. The lines in which the variables are set must have an asterisk (*) in the first column of the line. Such lines are resolved by the AutoEdit facility and are interpreted as comments by the utility. Regular comments can also be specified in lines with an asterisk in the first column.

IOACLCND Return Codes

Table 28 IOACLCND Return Codes

Code

Description

0

Operation performed successfully.

4

Execution error, operation stopped.

8 and above

Critical error, task not performed.

Examples for IOACLCND

IOACLCND Example 1

This example deletes all prerequisite conditions except the following:

    • conditions whose date is less than 10 days older than the current working date

    • conditions whose condition name begin with CICS or DB-

Since the control statements contains AutoEdit variables, the job must be submitted by Control-M.

The example assumes date standard mmddyy.

Figure 5 IOACLCND – Example 1

Copy
// EXEC   IOACLCND
 IGNORE COND * FROM -10 TO %%RMONTH.%%RDAY.%%RYEAR
 IGNORE COND CICS
 IGNORE COND DB-

IOACLCND Example 2

Clean the IOA Conditions file of all prerequisite conditions not referenced by jobs in the Active Jobs file, except those prerequisite conditions beginning with CICS (prerequisite conditions beginning with CICS are not deleted). Do not check the Active Missions file to see if a prerequisite condition is referenced.

Figure 6 IOACLCND – Example 2

Copy
// EXEC   IOACLCND
 IGNORE CONDIN * CONTROLD NO
 IGNORE COND CICS

IOACLVL – Compare Levels

This service compares the level of modules in two IOA load libraries allocated to the DD name STEPLIB. The level information is retrieved using the IDL facility. For more information about the identity level facility, see the INCONTROL for z/OS Administrator Guide. The IOACLVL utility consists of the IOACLVLG and IOACLVLC jobs.

Activating the IOACLVL utility

The IOACLVLG job collects the level information on two compared systems and must be executed twice, once on the production system and once on the test system. The reports produced by the IOACLVLG job on the compared systems are used as the input by the IOACLVLC job, which compares the level information of the two systems and produces the final report. The report includes detailed information about the differences between the compared systems, as shown in the example on IOACLVLC job. The IOACLVLG and IOACLVLC jobs must be customized before they are used, using the variables described in Table 29 and Table 30:

Table 29 IOACLVLG variables

Variable

Description

RESDSN

The name of the output data set that will contain the resulting report

INSTID

The identifier of the product instance (for example, TEST or PROD). The ID is used to distinguish between the compared systems; therefore, it must be different between two runs of the job on the different systems. Maximum length is 8 characters.

Table 30 IOACLVLC variables

Variable

Description

RESDSN

The name of the output data set that will contain the resulting report

INDSN1

The name of the data set that will contain the report of the level information regarding the first (test) compared system (RESDSN of the IOACLVLG job executed on the first compared system).

INDSN2

The name of the data set that will contain the report of the level information regarding the second (production) compared system (RESDSN of the IOACLVLG job executed on the second compared system).

IOACLVL Return Codes

Table 31 IOACLVL return codes

Code

Description

0

Operation performed successfully.

8

Operation failed. The failure is the result of one of the following errors:

  • failed to close the data set containing the sort control statement

  • failed to setup the recovery routine

  • received invalid parameter

  • failed to allocate the storage below the line

  • failed to open the load data set

  • failed to open the sort control statement data set

  • failed to initialize the IDL facility

For more information, see messages IOAL41I through IOAL4KE in the INCONTROL for z/OS Messages Manual for more details.

12

Operation failed. The failure is the result of one of the following errors:

  • failed during processing the data set allocated to DAPRIDL

  • failed to put the data into the sort control statement data set

  • failed during execution of the DESERV macro

  • the BLDL macro failed

  • failed to load a member from the load data set

  • the IDL facility failed to execute the SHOW TABLE request

For more information, see messages IOAL41I through IOAL4KE in the INCONTROL for z/OS Messages Manual for more details.

Examples for IOACLVL

IOACLVLG job

For the second compared system, the RESDSN and INSTID variables must be different than those in the example:

Copy
//IOACLVLG JOB IOA700,&SYSUID,NOTIFY=&SYSUID//*
//*
//*********************************************************************
//*                                                                    
//* THE JOB COLLECTS THE LEVEL INFORMATION OF ALL LOAD MODULES LOCATED 
//* IN THE STEPLIB DEFINED BY THE INSTALLATION (IN THE MEMBER 'IOASET').
//* THE JOB MUST BE SUBMITTED ON TWO COMPARED SYSTEMS IN ORDER TO GENE-
//* RATE TWO REPORTS - ONE PER SYSTEM.                                 
//* THE RESULTING REPORT WILL BE USED AS ONE OF TWO INPUT REPORTS BY   
//* THE JOB 'IOACLVLC' IN ORDER TO COMPARE THE LEVEL INFORMATION OF TWO
//* INSTALLATIONS.                                                     
//*                                                                    
//* THE CUSTOMIZATION AREA VARIABLES MUST BE CUSTOMIZED AS FOLLOWS:    
//*     'RESDSN' -   DEFINES THE NAME OF THE DATA SET THAT STORES THE  
//*                  RESULTING REPORT                                  
//*     'INSTID'   - DEFINES UP TO 8 CHARACTER IDENTIFICATOR OF THE    
//*                  INSTALLATION - USED TO DISTINGUISH BETWEEN THE    
//*                  REPORTS GENERATED BY THIS JOB ON DIFFERENT SYSTEMS
//*                  (FOR EXAMPLE 'TEST' OR 'PROD')                    
//*                                                                    
//*======  START OF THE CUSTOMIZATION AREA  ===========================
//*                                                                    
//         SET INSTID=TEST                   ID OF THE INSTALLATION -  
//*                                          UP TO 8 CHARACTERS        
//*                                          (TEST OR PROD)            
//         SET RESDSN=&SYSUID..IOACLVL.RES1  RESULTS DATA SET NAME     
//*                                                                    
//*======  END OF THE CUSTOMIZATION AREA    ===========================
//*                                                                    
//         JCLLIB  ORDER=IOAP.V700.PROCLIB                             
//         INCLUDE MEMBER=IOASET                                       
//*                                                                    
//*--------------------------------------------------------------------
//*        GET THE LEVEL INFORMATION OF THE TEST LOAD DATA SET         
//IOAGLVL  EXEC PROC=IOACLVLG,SETID=&INSTID,OUTDSN=&RESDSN             
//                                                                      

IOACLVLC job

Copy
//IOACLVLC JOB IOA700,&SYSUID,NOTIFY=&SYSUID
//*
//*
//*********************************************************************
//*                                                                    
//* THE JOB COMPARES BETWEEN TWO REPORTS GENERATED BY THE JOB 'IOACLVLG'
//* IN ORDER TO FIND THE DIFFERENCES BETWEEN TWO INSTALLATIONS OF IOA. 
//*                                                                    
//* THE CUSTOMIZATION AREA VARIABLES MUST BE CUSTOMIZED AS FOLLOWS:    
//*                                                                    
//*        'RESDSN' - THE VARIABLE DEFINES THE DSNAME OF THE RESULTING 
//*                   REPORT                                           
//*        'INDSN1' - THE VARIABLE DEFINES THE DSNAME OF THE REPORT THAT
//*                   GENERATED BY THE JOB 'IOACLVLG' ON THE FIRST     
//*                   INSTALLATION TO BE COMPARED                      
//*        'INDSN2' - THE VARIABLE DEFINES THE DSNAME OF THE REPORT THAT
//*                   GENERATED BY THE JOB 'IOACLVLG' ON THE SECOND    
//*                   INSTALLATION TO BE COMPARED                      
//*                                                                    
//*********************************************************************
//*                                                                    
//*======  START OF THE CUSTOMIZATION AREA  ===========================
//*                                                                    
//         SET RESDSN=&SYSUID..IOACLVL.RES   RESULTS DATA SET NAME     
//         SET INDSN1=&SYSUID..IOACLVL.RES1  LEVEL INFO OF 1ST DATA SET
//         SET INDSN2=&SYSUID..IOACLVL.RES2  LEVEL INFO OF 2ND DATA SET
//*                                                                    
//*======  END OF THE CUSTOMIZATION AREA    ===========================
//*                                                                    
//         JCLLIB  ORDER=IOAP.V700.PROCLIB                             
//         INCLUDE MEMBER=IOASET                                       
//*                                                                    
//*--------------------------------------------------------------------
//*        COMPARE THE LEVEL INFORMATION OF THE LOAD DATA SETS         
//IOACMPRL EXEC PROC=IOACLVLC,OUTDSN=&RESDSN,IN1=&INDSN1,IN2=&INDSN2   
//

IOACLVL sample report

Copy
CLIENT   ECANCMP$ 6.1.00 II0959 IOAR630  PROD
CTBABF#  CTBABF#  6.1.07 BB0873 IOAR630  PROD
CTBABF#  CTBABF#  6.3.00 IOA700 IOAR700  TEST
CTBABF#  CTMXAGR  6.3.00 IOA700 IOAR700  TEST
CTBABI   CTMXAGR  6.3.00 IOA700 IOAR700  TEST
CTBBAO   CTBINP   6.3.00 IOA700 IOAR700  TEST
CTBBAO   CTBSE01  6.3.00        IOAR700  TEST
CTBBAO   CTMCMPXA 6.2.00 IM0971 IOAR630  PROD
CTBBAO   CTMCMPXA 6.3.00 IOA700 IOAR700  TEST
CTBBAO   CTMDSS   6.2.00 BM5699 IOAR630  PROD
CTBBAO   CTMDSS   6.3.00 IOA700 IOAR700  TEST
CTBBAO   CTMDTM   6.2.00 BM5401 IOAR630  PROD
CTBBAO   CTMDTM   6.3.00 IOA700 IOAR700  TEST
CTBBAO   CTMRSV   6.3.00 IOA700 IOAR700  TEST
. . .

IOACMPP – Compare IOA Parameter Files at Different Installations

The purpose of the IOACMPP utility is to compare the parameters of two different members that are in different IOA or INCONTROL libraries.

To avoid executing the utility multiple times for different members, the IOACMPP utility supports comparison of two entire libraries when names of the members are identical.

Structure of the parameter’s member

Each record in the parameter member contains the following information:

Copy
Label        Parameter name=Parameter value        Note

Table 32 Parameter's member structure and description

Parameter

Description

Label

The block's name of certain group of parameters. The name may contain more than one parameter.

Parameter name

The parameter name of a certain block. This name may be found in another block.

Parameter value

The parameter value (string or integer).

Note

Notes specific to the parameter. Notes begin with an asterisk (*).

Copy
*        Monitor Parameters:                       *             
MONITOR  INTERVLM=0300,        CTM Monitor Interval (0010-9999). 
         NONSWAPM=Y,           Run Monitor as Non-Swappable (Y/N).

In this example:

  • Note *        Monitor Parameters:                       *

  • First parameter to be compared

    • Label MONITOR

    • Parameter name INTERVLM

    • Parameter value 0300

    • Note CTM Monitor Interval (0010-9999)

  • Second parameter to be compared

    • Label MONITOR

    • Parameter name NONSWAPM

    • Parameter value Y

    • Note Run Monitor as Non-Swappable (Y/N).

Activating the IOACMPP utility

You can run the IOACMPP utility in either of the following ways:

  • From command line.

    Results are displayed in the ISPF panel.

  • By submitting a job.

    A sample job can be found in the IOACMPPJ member in the IOA.V700.SAMPLE library.

IOACMPP Usage

The IOACMPP utility examines the following items in sequence to compare the two parameter’s members:

  • Label – whether the label exists in both members

  • Parameter name—if the label is the same, the utility compares the names of the parameters

  • Parameter value – if the parameter name is the same, the utility compares the values of the parameters

Notes that begin with an asterisk and notes at the end of the record are ignored during the comparison of the parameters.

The order of the parameters in the label and the order of the labels in the member are not significant.

IOACMPP Components

The IOACMPP utility contains the following parts:

IOACMPP

Performs the comparison (REXX)

IOACMPPH

Help panel containing further description of the messages

IOACMPPJ

Sample JCL to execute the utility

IOACMPPP

Panel to display the result (ISPF panel)

IOACMPP Input

The order of the input information is significant.

Table 33 IOACMPP input

Input

Description

Base library

Name of base library for comparison.

Member to compare, or generic name

Member in the base library to compare, or generic name such as CT*PARM.

When a generic name is used, the comparison is made between the same member name in both     libraries.

Compared library

Name of second library for comparison.

Name of member in the compared library

Member in the second library to compare, or generic name such as CTMPARM*.

Optional if the name of this member differs from the name of the base library member.

IOACMPP Return codes

Table 34 IOACMPP return codes

Code

Description

00

Function executed successfully

04

Bad number of arguments

08

Libraries, panel, or members that are specified are not found

12

Two copies of the utility are running simultaneously

20

Severe

Results of IOACMPP

Depending on how the utility ran, one of the following occurs:

  • ISPF panel in TSO is displayed, through a temporary table. (Press PF1 in the output panel to display explanations of the messages).

  • A report is printed in the DD SYSTSPRT job.

In both cases, the following information is displayed:

  • static information

    • name of the first library

    • name of the second library

    • number of members found

    • name of the displayed member

  • dynamic information (in the same row)

    • label name

    • parameter name

    • parameter value

    • messages

IOACMPP output analysis

The output of the IOACMPP utility with each record in the parameter member containing the following information:

Copy
Label        Parameter name=Parameter value        message

Table 35 IOACMPP output messages when ISPF panel in TSO is displayed

Message

Description

Blank

The same value is found in both members.

MultiValuesX

This parameter at this block has an equal value in both members, where X is number of the member,
1-1st : 2-2nd.

DeffValuesX

This parameter has a different value in each member, where X is number of the member, 1-1st : 2-2nd.

ParmNotInc

This parameter is not found in the first member. It is found only in the second member.

BlkNotInc

The entire block is not found in the first member. It is found only in the second member.

Found in 1st, NOT found in 2nd

When this message is displayed, no parameters are found in the second member. They are found only in the first member.

Table 36 IOACMPP output messages when report is printed in DD SYSTSPRT

Message

Description

Blank

The same value is found in both members.

These two messages are combined:

  • Different values 1st member

  • Different values 2nd member

The parameter was found in the same label but had a different value.

The parameter was found in the same label but had a different value.

This parameter is NOT included in the 1st member

The label was found in both members, but the parameter was found only in the second member.

This label is NOT assigned to the 1st member

The label from the second member was not found in the first member; therefore, all parameters which belong to that label are also not found in the first member.

Found in 1st, NOT found in 2nd

When this message is displayed, all parameters are not found in the second member, but are found in the first member.

Examples for IOACMPP

Running the IOACMPP utility from the command line:

Copy
EXEC 'IOA.V700.CLIST(IOACMPP)' 'IOAP.V700.PARM * IOAP.V630.PARM’

This example uses the IOACMPP utility in the IOA.V700.CLIST library to compare all members that have the same names in the IOAP.V700.PARM and IOAP.V630.PARM libraries.

Copy
==>                                                           Row 351 of 2345
                                                                              
     THIS IS THE RESULT OF THE COMPARISON OF THE MEMBERS
                    Press PF1 for description of the Messages
 The First  Library is: IOAP.V700.PARM
 The Second Library is: IOAP.V630.PARM                                        
                                               Number of Members found: 21    
 Label   Parameter                                        Message 
==>CTMPARM at Different Libraries:   
----------------------------------- 
MONITOR  INTERVLM=300  
         NONSWAPM=Y             
         CTMPLEX=Y                     
         HLDCLAS=X,                                       ParmNotInc 
         PRTCLAS=X         
         AUTOTAPE=Y,                                      ParmNotInc 
         CMEMREQ#=20 
         FORCE#RT=6,                                      ParmNotInc 
         FORCE#WI=0                                       DiffValues1
                 =1                                       DiffValues2 
         MAXJBHLD=0                                       DiffValues1
                 =10                                      DiffValues2
CKP      AJFSIZE=10000  
         AJFTHRSH=90     
         HIST=Y           
         JRNL=Y             
         REUSTIME=1              
         REUSAPPL=K27                                     DiffValues1  
                 =NOA                                     DiffValues2
NEWDAY   PROCNAMM=M63TDAY                                 DiffValues1
                 =M62TDAY                                 DiffValues2         
         DAYTIMEM=+1430                                   DiffValues1         
                 =+1200                                   DiffValues2         
         REPDELJ=Y                                        DiffValues1         
                =N                                        DiffValues2         
         NEWDAY#W=30                                      DiffValues1         
                 =35                                      DiffValues2         
ORDER    CALNFND=N                                                            
         CNTERCRD=Y                                                           
         CNTERCMP=N                                                           
         FREESPAC=150                                     DiffValues1         
                 =50                                      DiffValues2         

Submitting an IOACMPP utility job:

Copy
//IOACMPPJ JOB ,COMPARE,NOTIFY=K68
//S1 EXEC PGM=IKJEFT01
//SYSEXEC DD DISP=SHR,DSN=SCM.WORK.R700.IOA.CLIST
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
IOACMPP IOAP.V700.PARM CTMPARM IOAP.V630.PARM
/*

The output of an IOACMPP utility job is written to SYSTSPRT:

Copy

READY                                                                          
IOACMPP IOAP.V700.PARM * IOAP.V630.PARM                                        
The First  Library is:IOAP.V700.PARM                                           
The Second Library is:IOAP.V630.PARM                                           
                                                                               
==>CTBPARM at Different Libraries:                                             
-----------------------------------------                                      
DAYTIME        DAYTIMEB=+0900                                                        
CODES           DEFSTAT=OK                                                            
                        DEFCODE=0000                                                          
RTE                 RTEBUF=099                                                            
DATABASE     VARCRET=Y                                                             
                        VARGENS=0005                                                          
PRODUCTS   CTBINM=Y                                                              
                        CTBIND=Y                                                              
                        CTMSTSTA=CTBFIRST                                                     
                        CTMSTEND=CTBLAST                                                      
PROCS           CTBPROC=B63TROLB                                  Different Values 1st
                       =B62TROLB                                  Different Values 2nd
PRINT             DECCHAR=DOT                                                           
DEFAULT       STATB=N                                                               
                       SEARCHB=R                                                             
                       NOTFND=N                                                              

IOACND – Perform IOA Condition File or Control-M Resources File Adjustments

This utility adds, verifies the existence of, deletes, or modifies prerequisite conditions in the IOA Conditions file and/or resources in the Control-M Resources file. It can be activated by the operator as a started task (STC), from TSO, or from within a user program.

The addition, deletion, modification or verification is recorded three ways: in the job sysout, as a message on the operator console and as an event in the IOA Log file.

Parameters can be received by the utility in two ways: using DD statement DACNDIN (or SYSIN), or using PARM. The parameters required depend on whether prerequisite conditions, control resources or quantitative resources are being processed. If an input parameter file is specified, its block size must not exceed 8000.

If it is necessary to add, delete, verify or modify prerequisite conditions or resources during a job step, IOACND can be called as a procedure from within the application program. For more information, see Activating the IOACCND Utility (Example).

The IOACND utility deletes control resources only when those resources were added manually, either by the IOACND utility itself or through screen 4. If you need to delete a resource that is allocated to a specific job, you can use the CTMRELRS utility, but only from within the job.

If the IOA Conditions file and/or the Control-M Resources file is shared across multiple CPUs, use an enqueue manager (such as MIM or GRS) to prevent simultaneous update of the file. For more information, see the description of the QNAME and SHRQNAM parameters in the IOA installation chapter in the INCONTROL for z/OS Installation Guide.

Parameters for Processing Prerequisite Conditions (IOACND)

operation COND condition condition_date

where

  • operation is the action to be performed by the utility. Valid values are:

    • ADD – Add the specified prerequisite condition.

    • DELETE – Delete the specified prerequisite condition.

    • CHECK – Verify the existence of the specified prerequisite condition.

  • condition is the name of the prerequisite condition.

  • condition_date is the date associated with the prerequisite condition. Valid values are:

    • mmdd, ddmm – Any specific date (in format mmdd or ddmm, depending on the site standard defined by the DATETYP parameter in IOAPARM)

    • DATE – Current Gregorian date

    • WDATE – IOA working date

    • STAT – Static. Indicates that the condition (for example, IMS-ACTIVE) is not date-dependent.

Date character masking for DELETE and CHECK functions is supported as follows:

  • * represents any value in the corresponding position of the date (format mmdd or ddmm depending on the site standard). Up to four asterisks can be specified. For example

  • **** represents any date

Parameters for Processing Control Resources (IOACND)

operation CONTROL resource control

where

  • operation is the action to be performed by the utility. Valid values are:

    • ADD – Add the specified Control resource under the specified type of control.

    • DELETE – Delete the specified resource that is under the specified type of control.

  • resource is the name of the resource.

  • control is the type of control. Valid values are:

    • E – Exclusive control

    • S – Shared control

Parameters for Processing Quantitative Resources (IOACND)

Copy
operation RESOURCE resource quantity

where

  • operation is the action to be performed by the utility. Valid actions are:

    • ADD – Add the specified Quantitative resource with the quantity specified. quantity is mandatory.

    • DELETE – Delete the resource (and the entire existing quantity). quantity must not be specified.

    • CHANGE – Adjust the existing quantity of the Quantitative resource to or by the value specified in quantity. quantity is mandatory.

  • resource is the quantitative resource name.

  • quantity is the quantity of the Quantitative resource.

    For CHANGE operations, valid values can have the format n, +n, or –n where n is an integer. When n is specified, the quantity of the Quantitative resource is set to n. When +n or –n is specified, the quantity is increased or decreased by n.

    For ADD actions, valid values can only have the format n, where n is the quantity of the Quantitative resource to be added.

Activating the IOACND Utility (and Examples)

The IOACND utility can be activated as a step in a job or from an application program (as illustrated in the following examples). In these cases, proper protocol is ensured. However, if you use a different method to invoke the IOACND utility, follow the rules below to ensure that the proper protocol is maintained:

  • When the IOACND utility receives control, register 1 must contain the address of a full word.

  • To indicate this is the last, and only, parameter, the high-order byte must contain X'80'.

  • The three low order bytes of the fullword must contain the address of a halfword field.

  • The halfword field must be the count of the number of bytes of information contained in the parameter list.

  • The parameters must immediately follow the halfword field.

    • As a job step

      Copy
      //CND1 EXEC IOACND
        ADD COND JOB-A-ENDED-OL 0505
        DELETE COND JOB-A-DID-NOT-RUN 0505
        CHANGE RESOURCE TAPE -1
        ADD RESOURCE INIT-CPUA 3
        DELETE RESOURCE INIT-CPUB
        ADD CONTROL PROD-DATA-BASE E
    • As a job containing AutoEdit variables, submitted through the Control-M monitor

      Copy
      //CND1 EXEC IOACND
        ADD COND     AR-FILE-009-CREATED  %%OMONTH.%%ODAY
    • As an operator command

      Copy
      S IOACND,PARM='ADD COND END-CICS 0102'
    • As a called procedure in an application program

      Copy
               CALL CTMCND,(PARMCOND),VL
               LTR  R15,R15
               BNZ  ERROR
               ...
      PARMCOND DC   AL2(80)
      DC   CL80'ADD COND CICS-FILE-CLOSED 0102'
    • As invoked from a REXX exec

      Copy
      parm = ’ADD COND cond_name odat’
      address linkmvs ’ioacnd parm’

Program IOACND works in 24-bit addressing mode and is reusable and reentrant.

IOACND Return Codes

Table 37 IOACND Return Codes

Action

Code

Description

ADD

 

 

0

Prerequisite condition or resource added

8

Prerequisite condition or resource already exists

12 and above

Function failed

DELETE

 

 

0

Prerequisite condition deleted

8

Prerequisite condition or resource to be deleted does not exist

12 and above

Function failed

CHECK

 

 

0

Prerequisite condition exists

8

Prerequisite condition or resource to be deleted does not exist

12 and above

Function failed

CHANGE

 

 

0

Quantity of Quantitative resource adjusted successfully

8

Quantitative resource does not exist

12 and above

Function failed

If you are working in a VM/CMS environment, the IOAVCND utility can be used to set prerequisite conditions in a Control-M monitor running on an NJE-connected MVS machine.

The EXEC statement for the IOAVCND utility utilizes standard IOACND input and sends a job to the MVS node to set the conditions.

Copy
EXEC  IOAVCND   'ADD COND VM-READY   STAT'

IOACPLOG – Copy the IOA Log File

The IOACPLOG utility copies the contents of the IOA Log file. The contents can be copied to a sequential file or to another Log file. Usage of the utility depends on the type of target file.

Copying to a Sequential File

The IOA Log file is generally copied to a sequential file for archiving. The sequential file can be restored for access under ISPF (for example, browsing) and for use by report generators.

A date range for the log records to be copied can be specified. If a date range is not specified, the entire Log file is copied.

The target sequential file is referenced by DD statement DALOGSEQ. The existing Log file is referenced by DD statement DALOGCUR.

You should use the utility daily to copy the contents of the IOA Log file to a sequential file. Use of AutoEdit parameters can simplify the process.

Parameters for IOACPLOG Copy to Sequential File

Parameters are supplied using DD statement DALCPPRM (or SYSIN).

Table 38 IOACPLOG Copy to Sequential File Parameters

Parameter

Description

COPYTOSEQ

Indicates that the utility is being used to copy records from the IOA Log file to a sequential file.

FROMDATE yymmdd

Date of the earliest Log record to be copied. AutoEdit variables are supported.

TODATE yymmdd

Date of the latest Log record to be copied. AutoEdit variables are supported.

Activating the Utility (and Example) for IOACPLOG Copy to Sequential File

Figure 7 IOACPLOG – Example 1

Copy
//* %%SET %%D = %%CALCDATE %%ODATE -1
//   EXEC IOACPLOG
//DALOGSEQ DD DSN=prefix.seqfile,DISP=... Target sequential file
//DALCPPRM DD *
 COPYTOSEQ
 FROMDATE %%D
 TODATE %%D
//

Return Codes for IOACPLOG Copy to Sequential File

Table 39 IOACPLOG Copy to Sequential File Return Codes

Code

Description

0

Operation performed successfully

Other

Operation failed

Copying to a Log File

This function is generally used to copy one Log file to another. The target Log file size can be different from the source Log file size. However, if the target Log file is smaller, the oldest records in the source Log file may be deleted.

The target Log file is referenced by DD statement DALOG.

Parameters for IOACPLOG Copy to Log File

One parameter is supplied using DD statement DALCPPRM (or SYSIN). The existing Log file is referenced by DD statement DALOGCUR.

Table 40 IOACPLOG Copy to Log File Parameters

Parameter

Description

COPYTOLOG

Indicates that the utility is being used to copy the IOA Log file to another Log file.

Activating the Utility (and Example) for IOACPLOG Copy to Log File

Figure 8 IOACPLOG – Example 2

Copy
// EXEC IOACPLOG
//DALOG DD DSN=prefix.logfile,DISP=...Target Log file
//DALCPPRM DD *
 COPYTOLOG
//

Subparameters FROMDATE and TODATE cannot be used with parameter COPYTOLOG.

Return Codes for IOACPLOG Copy to Log File

Table 41 IOACPLOG Copy to Log File Return Codes

Code

Description

0

Operation performed successfully

Other

Operation failed

IOADBF – Allocate or Format an IOA Access Method File

The IOADBF utility is used to allocate and format the data and index components of an IOA Access Method file. This utility uses database definition statements stored in specified members to perform a requested operation. These members are created by ICE during product installation, and can be managed through ICE Customization.

IOADBF Parameters

The following parameters can be specified to the utility in the EXEC statement that invokes the IOADBF JCL procedure:

Table 42 IOADBF Parameters

Parameter

Description

FUNC

Function to be performed

  • INIT – Allocates and initializes (formats) a new IOA Access Method file component.

  • FORM – Reformats an existing IOA Access Method file component.

  • EXTEND – Allocates and formats a new secondary extent for an existing IOA Access Method file component.

  • CHANGE – Changes or updates an IOA Access Method file component’s internal attribute settings. This function is used when it is necessary to change the settings of parameters in an IOA Access Method file definition after the file has been created.

  • DUALOK – Resets the flag that indicated a corrupted Dual Mirror Image file (DUALBAD). This function is used after a corrupted Dual Mirror Image file has been restored using IOADCPY.

D

Data set name suffix of the IOA library containing the IOA Access Method file Definition Statements member. The member name is specified using parameter M below.

M

Name of the IOA library member that contains the IOA Access Method file Definition Statements and whose data set name suffix is specified using parameter D above.

Each product creates its own database member during the ICE installation process

DD Statement DAFILE for IOADBF

When executing the IOADBF utility with parameter FUNC set to EXTEND or CHANGE, a DAFILE DD statement, specifying the name of the IOA Access Method file component’s primary data set extent, must be included in the JCL step executing the utility.

IOA Access Method File Definition Parameters

The following IOA Access Method file definition parameters can be specified as input to the IOADBF utility in the IOA library and member referred to above by EXEC statement parameters D and M:

Table 43 IOADBF Access Method Parameters

Parameter

Description

BLKSIZE

Block size of the IOA Access Method file, in bytes. For all index components and for data components with variable length records, it is recommended that the block size be set to the maximum half track capacity of the device on which the IOA Access Method file is allocated, as follows:

  • 19068 – 3350 DASD devices.

  • 23476 – 3380 DASD devices.

  • 27998 – 3390 DASD devices.

  • 22928 – 9345 DASD devices.

For data components with fixed length records, where the block size must be a multiple of the record length, it is recommended that the block size be set as close to, without exceeding, the device’s half track capacity.

Parameter BLKSIZE is not applicable when executing the IOADBF utility with the FORM or CHANGE function specified.

BUFL

Number of I/O buffers for which extended storage is obtained to access the IOA Access Method file.

This parameter cannot be used with Control-M/Analyzer files.

Buffer length is determined by parameter BLKSIZE, described above. A larger number improves I/O throughput at the expense of increased storage requirements. A smaller number reduces storage requirements at the expense of degrading I/O throughput.

COMPRS

Name of the IOA supplied routine to perform Data component record compression. This parameter must not be specified for index components.

The setting for COMPRS is IOA application dependent and must not be modified unless instructed otherwise by BMC Customer Support.

COMPTB

Name of the IOA supplied compression table to be used by the compression routine when performing data component record compression. Do not specify this parameter for index components.

If parameter COMPRS is specified, parameter COMPTB must also be specified.

Parameters COMPRS and COMPTB are not available when executing the IOADBF utility with the FORM or CHANGE function specified.

Parameters COMPRS and COMPTB are not available when executing the IOADBF utility on a Control-M/Analyzer or Control-O file.

The setting for COMPTB is IOA application dependent and must not be modified unless instructed otherwise by BMC Customer Support.

DSN

The data set name of the IOA Access Method file, excluding the extent number suffix (.E000 through .E255) that the IOADBF utility appends automatically when the IOA Access Method file is allocated.

The DSN parameter is not applicable when executing the IOADBF utility with the FORM or CHANGE function specified.

DUAL

Whether to allocate a dual mirror image of the specified file, which provides maximum data recovery capabilities when the disk or contents of the primary file become damaged or inaccessible. BMC recommends setting this parameter to Y for the Data component file.

Valid values are:

  • Y (Yes)—Allocate a dual mirror image copy. The dual mirror image file’s contents are kept synchronized with the contents of the primary file.

  • N (No)—Do not allocate a dual mirror image copy.

For Control-M/Tape, this parameter must be set to N.

DUALM

Whether to terminate or continue execution if a nonrecoverable I/O error occurs while processing the dual mirror image copy of the file.

Valid values are:

  • Y (Yes)—Terminate execution.

  • N (No)—Continue execution.

DUALST

Whether to perform timestamp checkpoint processing is internally to ensure that the primary and dual mirror image copies of the file are fully synchronized. Enabling this option insures greater data integrity at the expense of increasing I/O processing overhead.

Valid values are:

  • Y (Yes)—Perform timestamp checkpoint processing

  • N (No)—Do not perform timestamp checkpoint processing.

For more information, see the Control-M/Analyzer installation chapter in the INCONTROL for z/OS Installation Guide.

EAVUSE

Option to allocate a file on the Extended Address Volume (EAV).

Valid values are:

  • OPT—Allow allocation on EAV. The JCL parameter EATTR=OPT is used for the file allocation.

  • NO —Do not allow allocation on EAV. The EATTR parameter is not used.

The actual allocation on EAV depends on the primary and secondary SPACE parameters.

EXTEND

Specifies secondary extent to be allocated.

Valid values are:

  • A — Causes a secondary extent to be automatically allocated when an out-of-space condition is detected. Default

  • M — Requires a secondary extent to be manually allocated after an out-of-space condition is detected by executing the utility with the EXEC parameter FUNC set to EXTEND.

This parameter is ignored if no secondary space amount is specified using the SPACE parameter. It is not applicable when executing the IOADBF utility with the FORM or CHANGE function specified.

For Control-M/Tape, this parameter must be set to M. In addition, this parameter cannot be used with Control-M/Analyzer files.

KEYLEN

Record key length for IOA Access Method file index components only. This parameter must not be specified for data components.

Parameter KEYLEN is not applicable when executing utility IOADBF with the CHANGE function specified.

The setting for KEYLEN is IOA application dependent and must not be modified unless instructed otherwise by BMC Customer Support.

LRECL

Logical record length for IOA Access Method file data components only. This parameter must not be specified for index components.

The setting for parameter LRECL is IOA application dependent and must not be modified unless instructed otherwise by BMC Customer Support.

Parameter LRECL is not applicable when executing the IOADBF utility with the FORM or CHANGE function specified.

PRODUCT

Product that uses the file to be allocated or formatted. Valid values are:

  • D—Control-D or Control-V

  • B—Control-M/Analyzer

  • O—Control-O

  • T—Control-M/Tape

SPACE

The amount of space, in blocks, to be allocated for the primary and, optionally, for each secondary IOA Access Method file extent.

Secondary extents cannot be specified for Control-M/Analyzer files or Control-M/Tape index files.

To avoid termination of the Control-D or Control-O monitor when the primary extent becomes full and an out-of-space condition is detected, specify an amount for a secondary extent.

If an out-of-space condition occurs, secondary extent allocations can be set by

  1. specifying a secondary amount in the SPACE parameter

  2. executing the IOADBF utility with the EXEC parameter FUNC set to CHANGE
    This stores the new setting internally within the IOA Access Method file.

  3. restarting the Control-D or Control-O monitor.

For more information about secondary extents, see Multiple Extents.

Example 1

SPACE (1500)

A 1500-block IOA Access Method file is allocated. If the file becomes full, the application terminates with a corresponding error message.

Example 2

SPACE (1500,300)

A 1500-block IOA Access Method file is allocated. If the file becomes full and a secondary extent is automatically or manually allocated, each newly allocated extent is 300 blocks in size. For more information, see "EXTEND" in this table.

The amount of space for the primary extent is not applicable when executing the IOADBF utility with the FORM or CHANGE function specified.

TYPE

IOA Access Method file type. Valid values are:

  • F—Data component, fixed record format.

  • V—Data component, variable record format. This value is not valid for use with Control-M/Analyzer and Control-M/Tape files.

  • I—Index component.

The TYPE parameter is not applicable when executing the IOADBF utility with the FORM or CHANGE function specified.

UNIT

Name of the DASD unit to be used when allocating a new IOA Access Method file extent (for example, 3390).

UNITD

Name of the DASD unit to be used when allocating a new dual mirror image file extent (for example, 3390).

VOL

List of one to six DASD volume serial numbers, enclosed in parenthesis and separated by commas, in which the IOA Access Method file’s extents can be allocated.

All volumes must be defined to MVS as being associated with the unit name specified in the UNIT parameter, described in this table.

To obtain SMS support for IOA Access Method files, omit this parameter and specify the UNIT parameter for the SMS space area in the DEFxxx members. SMS allocates all the IOA Access Method extents according to SMS rules.

If there is insufficient space for the extents in the specified volumes, the process accessing the volumes (for example, the Control-D or Control-O monitor) automatically attempts to allocate a new extent on those volumes. If there is insufficient space for even these extents, the process terminates.

In this event, you can modify the VOL parameter to specify a new set of volumes (up to a maximum of six volumes). After modifying this parameter, run the IOADBF utility with EXEC parameter FUNC set to CHANGE, to store the new setting internally within the IOA Access Method file, and then restart the relevant process.

You can also use this method to manually allocate extents that failed by setting the EXEC parameter FUNC to EXTEND.

If you do not specify the VOL parameter, the IOA Access Method file is allocated using only the UNIT parameter.

VOLD

List of one to six DASD volume serial numbers, enclosed in parenthesis and separated by commas, on which the dual mirror image file’s extents can be allocated.

All volumes must be defined to MVS as being associated with the unit name specified in parameter UNITD above.

To obtain SMS support for IOA Access Method files, omit parameter VOLD and specify the UNIT parameter for the SMS space area in the DEFxxx members. SMS allocates all the IOA Access Method extents according to SMS rules.

To ensure greater data integrity, specify different volumes for the primary and dual mirror copy of each file. For more information, see the VOL parameter described in this table.

Examples for IOADBF

IOADBF Example 1

Copy
//INIT    EXEC    IOADBF,FUNC=INIT,D=INSTWORK,M=DEFACT

Contents of member DEFACT in the IOA.INSTWORK library:

Figure 9 DEFACT Contents

Copy
TYPE=V
DSN=CTD.V600.ACT
BLKSIZE=27998
LRECL=27974
SPACE=(1000,200)
BUFL=100
UNIT=3390
VOL=(PRD021,PRD022,PRD023,PRD024,PRD025,PRD026)
COMPRS=CTDUFCM
COMPTB=CTDUFCMA

IOADBF Example 2

Copy
//CHANGE  EXEC    IOADBF,FUNC=CHANGE,D=INSTWORK,M=DEFHSTI
//DAFILE  DD      DISP=SHR,DSN=CTD.V600.HSTI.E000

IOADBF Example 3

To change the qname of a file from the current data set qname to the default qname of the environment under which the utility is run, append (BYPASS) to the DSN specified in DD statement DAFILE.

Copy
//*** RESET QNAME OF CTB.V600.GRPD.E000 TO
//*** DEFAULT ENV. QNAME
//GRP EXEC IOADBF,FUNC=CHANGE,D=INSTWORK,
//      M=DEFGRPD,ILPREFA='IOA.V600'
//DAFILE DD DISP=SHR,DSN=CTB.V600.GRPD.E000(BYPASS)

Multiple Extents

IOA Access Method files can contain multiple extents. Each extent is a separate sequential file that contains a maximum of 65535 blocks and is allocated without a secondary space allocation.

If an IOA Access Method file has more than 65535 blocks, specify a space parameter, by an expression such as SPACE=(65535,30000). In this case, the IOA Access Method allocates a first extent of 65535 blocks and a second extent of 30000 blocks as separate OS/2390 or z/OS sequential files. However, the IOA Access Method treats the two files as one file with two extents. The new extent is allocated when records are written to the file if the first extent does not have sufficient free space for the new records.

The maximum size for secondary extents is also 65535 blocks. The IOA Access Method supports a maximum of 256 extents.

Using the IOADPT Utility for Space Management

To display information about the space remaining in an IOA Access Method file, run the IOADPT utility with the FUNC parameter set to DB0, as follows.

Copy
//AMSPACE EXEC IOADPT,FUNC=DB0,DBFILE=ACT

This information enables you to manage space allocations and provide extra extents before they are created. For details and examples, see IOADPT – Print IOA Access Method File Content.

IOADBF Control-D Samples

For information about using Control-D to allocate and format IOA Access Method files, see "Customize Control-D User Files" in ICE Customization.

IOADBF Control-M/Tape Samples

For information about using Control-M/Tape to allocate and format IOA Access Method files, see "Customize Control-M/Tape Datasets" in ICE Customization.

IOADBF Control-M/Analyzer Samples

The following jobs in the Control-M/Analyzer JCL library can be used as samples for formatting existing data and index files:

Table 44 IOADBF Control-M/Analyzer Sample Formatting Jobs

Job

Description

JOBFABF

Active Balancing file

JOBFGRP

Group file

JOBFJAF

Rule Activity file

JOBFREP

Report file

The following jobs in the Control-M/Analyzer JCL library can be used as samples for formatting and rebuilding the index file for an existing data file:

Table 45 IOADBF Control-M/Analyzer Sample Formatting and Rebuilding Jobs

Job

Description

JOBBGRP

Group file

JOBBDM

Access Method Variable Basic file

JOBBDBV

Access Method Variable Generation file

JOBBJAF

Rule Activity file

JOBBREP

Report file

For example, if the index file of the Rule Activity file was damaged by a disk crash but the data file was not damaged (meaning, the actual information about invocations, and so on, is accurate), use member JOBBJAF to reformat the index file and rebuild the index entries.

IOADBF IOA Samples

The IOADBF utility is used by the following jobs in the IOA JCL library:

Table 46 IOADBF IOA Sample Jobs

Job

Description

IOADBSBF

Allocates and formats the IOA Variable Database Definition file

IOACOLBF

Allocates and formats the IOA Variable Database Column file

IOAVARBF

Allocates and formats the IOA Variable Database Variables file

IOADBIB – Rebuild Index File

The IOADBIB utility rebuilds index files for various IOA Variable Database data files. The new index files correspond to information contained in the data files.

Use this utility only for core IOA databases. Other INCONTROL products have their own utilities according to the following table.

This utility rebuilds the indexes of a specific data file. Previous contents of the index file are erased.

The index file that is to be rebuilt must be allocated and formatted prior to activating the utility.

This utility is used:

  • When the space remaining for the existing index file is insufficient, or the relevant data file was reloaded. In this case:

    • Delete the index file.

    • Redefine the index file with the required amount of space.

    • Format the index file with the IOADBF utility.

    • Rebuild the index file with the IOADBIB utility.

  • In case of index file integrity problems that can be detected using the IOADII utility. For details, see IOADII – Verify Integrity of IOA Access Method File Index Component.

  • In case of data file integrity problems. In this case, correct the data file and re-index it with the IOADBIB utility to reproduce the corresponding index file.

IOADBIB Parameter

The following parameter can be specified in the EXEC statement that invokes the IOADBIB JCL procedure:

Table 47 IOADBIB Parameter

Parameter

Description

DBFILE

The identifier name (DBNAME) suffix of the IOA Access Method file

SYSIN parameters are provided in the keyxxx members in the PARM library for your convenience. File name specifications are hard coded (predefined) in these members.

Activating the IOADBIB Utility

Copy
// EXEC IOADBIB

IOADBIB Return Codes

Table 48 IOADBIB Return Codes

Code

Description

0

Operation performed successfully

other

Operation failed

Example for IOADBIB

Copy
//        EXEC IOADBIB,DBFILE=GRPD
//SYSIN   DD   DSN=IOA.PROD.PARM(KEYGRP),DISP=SHR
//DAGRP   DD   DSN=IOA.PROD.COLI,DISP=SHR

The IOADBIB utility is used by the following jobs in the IOA JCL library. For additional examples, refer to these jobs:

Table 49 IOADBIB Jobs

Job

Description

IOADBSBI

Rebuilds the index of the Variable Database Definition file

IOACOLBI

Rebuilds the index of the Variable Database Column file.

IOAVARBI

Rebuilds the index of the Variable Database Variable file.

IOADBSR – Sort Records in IOA Access Method Data Component

The IOADBSR utility sorts the records in an IOA Access Method file’s data component in the same logical order as the records in the associated IOA Access Method file’s index component.

Sorting an IOA Access Method file’s data component improves I/O performance.

The data component of the Control-D Active User Report List file can optionally be sorted automatically by the Control-D Monitor. For more information, see the Control-D and Control-V chapter of the INCONTROL for z/OS Administrator Guide.

WARNING: This utility does not support Control-M/Tape databases.

IOADBSR Parameters

The following parameters can be specified to the utility in the EXEC statement that invokes the IOADBSR JCL procedure:

Table 50 IOADBSR Parameters

Parameter

Description

DBPREFA

High level data set name qualifier (prefix) of the IOA Access Method file

DBFILE

The identifier name (DBNAME) suffix of the IOA Access Method file

PARMLIB

The last qualifier of the INCONTROL product library containing the input Sort Control statements

M

Member name in the INCONTROL product data set containing the input Sort Control statements

IOADBSR Sort Control Parameters

The following Sort Control parameters can be specified for dynamic sorting. Parameters that are not applicable to batch sorting with the IOADBSR utility are indicated as such.

Table 51 IOADBSR Sort Control Parameters

Parameter

Description

ENABLE

Whether dynamic sort processing is disabled. This parameter is ignored by the IOADBSR utility. Valid values are:

    • Y (Yes) – Enable dynamic sort processing.

    • N (No) – Disable dynamic sort processing.

TIMEFROM

Earliest time of day, in hhmm format, at which time dynamic sort processing can be performed. This parameter is ignored by the IOADBSR utility.

TIMETO

Latest time of day, in hhmm format, at which time dynamic sort processing can be performed. This parameter is ignored by the IOADBSR utility.

RBAOFS

Offset location within an index record of a four-byte field containing the address of the associated data record.

INTERVAL

Interval, in hhmm format, at which dynamic sort processing automatically starts during the time range specified by parameters TIMEFROM and TIMETO. This parameter is ignored by the IOADBSR utility.

DELYBLK

Amount of time, as a four-digit value in hundredths of seconds, that dynamic sort processing waits before processing a new block. For example, a value of 0001, 0010 or 0100 sets the delay time to one hundredth, one tenth or one full second, respectively.

START-WHEN-OVER

Limit of different Database file data component blocks referred to by all index records within any single index component block that automatically triggers dynamic sort processing.

This parameter is for internal use only and must not be modified unless instructed otherwise by BMC Customer Support.

STOP-WHEN-OVER

Maximum number of different data component blocks that can be referred to by all index records within any single index component block when dynamically sorting the index component block.

Parameter STOP-WHEN-OVER is for internal use only and must not be modified unless instructed otherwise by BMC Customer Support.

Example for IOADBSR

Figure 10 IOADBSR – Example

Copy
//   EXEC IOADBSR,DBPREFA=CTD,
//            DBFILE=ACT,
//            PARMLIB='CTD.PROD.PARM',
//            M=DBSRTPRM

For an example of how to sort the data component of the Control-D History User Report list, refer to sample job CTDUFSR in the Control-D JCL library.

IOADCPY – Recover an IOA Access Method File

The IOADCPY utility is used to recover an IOA Access Method file from the dual mirror image copy.

If an IOA Access Method file is used with dual file support, and either the working copy or the dual mirror image copy is corrupted or becomes unavailable, the damaged or missing file must be recovered. The IOADCPY utility restores the damaged or missing copy of the file from the copy that is still intact and available (including all file extents). If the dual copy is corrupted, the utility also resets the parameter in the control block of the IOA Access Method file that indicated a corrupted dual mirror image file (DUALBAD).

The IOADCPY utility is not relevant for IOA Variable Database files. Additionally, because Control-M/Tape databases cannot be defined with a dual mirror image option, this utility is not relevant for Control-M/Tape databases.

Activating the IOADCPY Utility

Copy
//COPY    EXEC    IOADCPY,DBFILE=ACT,SUFFIX=E000

When executing this utility, the DAIN DD statement must be included in the JCL stream and must specify the full name of the uncorrupted (valid, intact) IOA Access Method file.

When using this utility, the activities of all the relevant applications are stopped. For more information, see the relevant product chapter on the recovery process.

The IOADCPY utility cannot be used for IOA Variable Database files.

Examples for IOADCPY

If the dual mirror image copy of the Control-D Active User Report List is corrupted, the DAIN DD statement specifies the name of the main copy:

Copy
//DAIN DD DISP=SHR,DSN=CTD.PROD.ACT.E000

If the main copy of the Control-D Active User Report List is corrupted, the DAIN DD statement specifies the name of the dual mirror image copy:

Copy
//DAIN DD DISP=SHR,DSN=CTD.PROD.ACT.D000

IOADCPY Parameters

The following parameters can be specified to the utility in the EXEC statement that invokes the IOADCPY JCL procedure:

Table 52 IOADCPY Parameters

Parameter

Description

SUFFIX

Suffix of the data set name of the uncorrupted file.

  • E000—If the dual mirror image copy is corrupted, specify the suffix of the main copy of the IOA Access Method file.

  • D000—If the main copy is corrupted, specify the suffix of the dual mirror image copy of the IOA Access Method file.

UNIT

Name of the DASD unit to be used when allocating new extents for the damaged or missing file.

VOL

List of one to six DASD volume serial numbers, enclosed in parenthesis and separated by commas, on which the new extents of the damaged or missing file can be allocated.

All volumes must be defined to MVS as being associated with the unit name specified in parameter UNIT above.

If VOL is not specified, the extents are allocated using only parameter UNIT.

The above parameters are optional and are used only when it is necessary to override the UNIT and VOL (or UNITD and VOLD) parameters specified in the IOA Access Method file definition member when the IOA Access Method file was first created (member DEFxxx in the IOA INSTWORK library). After running the utility with these parameters, run the IOADBF utility with FUNC set to CHANGE to update the new values for these parameters in the IOA Access Method file control block.

IOADCPY Return Codes

Table 53 IOADCPY Return Codes

Code

Description

0

Operation performed successfully.

4

Missing DD statement or open error occurred for SYSPRINT file.

8

Missing DD statement or open error occurred for input IOA Access Method file.

12

Error in input parameters.

16

Error in IOA Access Method file name.

20

Error occurred in dynamic allocation.

24

Internal error occurred.

28

Insufficient storage.

32

Missing DD statement or open error occurred for output IOA Access Method file.

36

Error in input parameters – volume serial number was not supplied.

For more information about how to use this utility, see the CTDUFCPY sample member in the Control-D JCL library.

IOADIG – Verify Integrity of IOA Access Method File Data Component

The IOADIG utility is used to verify the integrity of the data component structure an IOA Access Method file by scanning the active and free record chain lists in the file, and reporting any detected errors. Optionally, this utility can correct the detected errors.

All file-related activity or online viewing of the relevant product must be stopped before this utility is run:

  • If the file being processed is a Control-D file, all Control-D monitors must be down when running this utility. No users should be viewing reports through the online panel when this utility is being run. Otherwise, the IOADIG job will go into a WAIT state.

  • If the file being processed is an IOA file, all monitors must be down when running this utility.

  • If the file being processed is a Control-M/Analyzer file, all Control-M/Analyzer activities must be held. For example, no Control-M/Analyzer rules must be invoked while this utility is running.

  • If the file being processed is a Control-M/Tape file, all Control-M/Tape activities in the system may be locked until the utility terminates.

Activating the IOADIG Utility

Copy
//CHECK EXEC IOADIG,DBFILE=logical_filename,
//      FUNC=R|W[,DBPREFA=prefix_filename]

IOADIG Return codes

Table 54 IOADIG return codes

Code

Description

8

SYSPRINT open failed

12

Insufficient memory

16

Open IOA AM file failed

20

IOAPARM load failed

24

Bad parameters

32

Integrity error

IOADIG Parameters

The following parameters can be specified to the utility in the EXEC statement that invokes the IOADIG JCL procedure:

Table 55 IOADIG Parameters

Parameter

Description

DBFILE

The identifier name (DBNAME) suffix of the IOA Access Method file.

FUNC

The function to be performed on the file. Valid values are:

  • R – Report errors detected.

  • W – Report and correct errors detected.

As a precaution, BMC recommends that a backup copy be made of the IOA Access Method file data component before executing the IOADIG utility with FUNC set to W.

DBPREFA

The high level qualifier of the database file. Instead of specifying a prefix file name, you can use the &DBPREFx variable, where x is one of the following database product IDs:

  • B – Control-M/Analyzer

  • D – Control-D

  • T – Control-M/Tape

If you omit the DBPREFA parameter, the IOA database prefix is used by default.

Example for IOADIG

To verify the integrity of the Control-D history (HIST) file, use the following JCL statement:

Copy
//CHECK EXEC IOADIG,DBFILE=HST,FUNC=R,DBPREFA=&DBPREFD

IOADIG IOA Samples

The IOADIG utility is used by the following jobs in the IOA JCL library:

Table 56 IOADIG Jobs

Job

Description

IOADBSIG

Verifies the integrity of the IOA Variable Database Definition file

IOACOLIG

Verifies the integrity of the IOA Variable Database Column file

IOAVARIG

Verifies the integrity of the IOA Variable Database Variables file

IOADIG Control-D Samples

For an example of how to check the structural integrity of a Control-D IOA Access Method file data component, see the CTDUFCHK sample job in the Control-D JCL library.

IOADIG Control-M/Tape Samples

The IOADIG utility is used by the CTTDIG job in the Control-M/Tape JCL library.

IOADII – Verify Integrity of IOA Access Method File Index Component

The IOADII utility is used to verify the integrity of the index component structure of an IOA Access Method file. If errors are detected, format the index file component using the IOADBF utility, and then rebuild the index using the appropriate index rebuilding utility. For information about index rebuilding utilities for IOA Access Method in the IOA administration chapter of the INCONTROL for z/OS Administrator Guide.

This utility also indicates the number of records in the file.

The IOADII utility is not relevant for IOA Variable Database files.

Activating the IOADII Utility

Copy
//CHECK EXEC IOADII,DBFILE=logical_filename[,
//      DBPREFA=prefix_filename]

If you omit the DBPREFA parameter, the IOA database prefix is used by default.

IOADII Parameters

The following parameters can be specified to the utility in the EXEC statement that invokes the IOADII JCL procedure:

Table 57 IOADII Parameters

Parameters

Description

DBFILE

The identifier name (DBNAME) suffix of the IOA Access Method file

DBPREFA

The high level qualifier of the database file. Instead of specifying a prefix file name, you can use the &DBPREFx variable, where x is one of the following database product IDs:

Valid values are:

  • B – Control -M/Analyzer

  • D – Control-D

  • T – Control-M/Tape

Example for IOADII

To verify the integrity of the Control-M/Tape media (MDB) database index file, use the following JCL statement:

Copy
//CHECK    EXEC    IOADII,DBFILE=MDBI,DBPREFA=&DBPREFT

IOADII Control-D Samples

For an example of how to check the structural integrity of a Control-D IOA Access Method file data component, see the CTDUFCHK sample job in the Control-D JCL library.

IOADII Control-M/Tape Samples

The IOADII utility is used by the CTTDII job in the Control-M/Tape JCL library.

IOADLD – Load IOA Access Method File Contents

The IOADLD utility is used to load the contents of an IOA Access Method file from a sequential file previously created by the IOADUL utility.

All file-related activity of the relevant product must be stopped before this utility is run:

  • If the file being loaded is a Control-D file, all Control-D monitors must be down when running this utility.

  • If the file being loaded is an IOA file, all monitors must be down when running this utility.

  • The IOADLD utility cannot be run on Control-M/Analyzer files.

This utility is typically used to migrate an IOA Access Method file to another DASD volume. In this case, perform the following steps:

  1. Run the IOADUL utility to unload the IOA Access Method file data component’s records to a sequential data set.

  2. Allocate and format a new IOA Access Method file on a new DASD volume using the IOADBF utility.

  3. Run the IOADLD utility to reload the IOA Access Method file data component records from the sequential data set previously produced by the IOADUL utility.

  4. Run the appropriate index rebuilding utility to rebuild the IOA Access Method file index component, based on the contents of the data component:

    • For IOA databases, use the IOADBIB utility.

    • For Control-D, use the CTDDIB utility.

    • For the Control-V global index file, use the CTDGBIB utility.

    • For the Control-M/Tape media database, use the CTTBIX utility.

    • For the Control-M/Tape stacking database, use the CTTDBIB utility.

Activating the IOADLD Utility

Copy
//LOAD    EXEC    IOADLD

IOADLD Parameters

The following parameters can be specified to the utility in the EXEC statement that invokes the IOADLD JCL procedure:

Table 58 IOADLD Parameters

Parameter

Description

SQFILE

The data set name suffix of the input sequential file

DBFILE

The identifier name (DBNAME) suffix of the IOA Access Method file

DISPI

The MVS data set disposition of the input file. Valid values are:

  • KEEP (default)

  • DELETE

DBPREFA

The high level qualifier of the database file. Instead of specifying a prefix file name, you can use the &DBPREFx variable, where x is one of the following database product IDs:

Valid values are:

  • B – Control-M/Analyzer

  • D – Control-D

  • T – Control-M/Tape

DBPREFS

Prefix of the input dataset (sequential file)

Example for IOADLD

Copy
//LOAD EXEC IOADLD,SQFILE=ACTSEQ,DBFILE=ACT, DBPREFA=&DBPREFD

IOADLD Control-D Samples

For an example of how to load Control-D IOA Access Method file data component records from a sequential data set and then rebuild the IOA Access Method file’s index component, see the CTDUFRST sample job in the Control-D JCL library.

IOADLD Control-M/Tape Samples

The IOADLD utility is used by the CTTDBDLD job in the Control-M/Tape JCL library.

IOADLD IOA Samples

The IOADLD utility is used by the following jobs in the IOA JCL library:

Table 59 IOADLD Jobs

Job

Description

IOADBSLD

Loads the IOA Variable Database Definition file

IOACOLLD

Loads the IOA Variable Database Column file

IOAVARLD

Loads the IOA Variable Database Variables file

IOADPT – Print IOA Access Method File Content

The IOADPT utility prints IOA Access Method file data and index records in SNAP dump format.

Activating the IOADPT Utility

Copy
//PRINT EXEC IOADPTE

IOADPT Parameters

The following parameters can be specified to the utility in the EXEC statement that invokes the IOADPT JCL procedure:

Table 60 IOADPT Parameters

Parameter

Description

FUNC

The print function to be performed. Valid values are:

  • 0 – Print IOA Access Method file index and data components.

  • 1 – Print IOA Access Method file index component only.

  • DB0 – Print IOA Access Method file index and data component control records.

  • CHKSPACE - Print the User file location and space parameters. The utility issues warning messages if the database parameters can cause space problems in the User file.

DBFILE

The identifier name (DBNAME) suffix of the IOA Access Method data file

KEYFROM

The value of the record key from which to print. Optional.

KEYTO

The value of the record key until which to print. Optional.

RBAOFF

The RBA offset in the index record key pointing to the data component record. The default setting for this parameter is 0.

For Control-M/Tape, this parameter can be set to 0, because the offset is automatically calculated within the utility program.

DBPREFA

The high level qualifier of the database file. Instead of specifying a prefix file name, you can use the &DBPREFx variable, where x is one of the following database product IDs:

Valid values are:

  • B – Control-M/Analyzer

  • D – Control-D

  • T – Control-M/Tape

DBINDEX

The identifier name (DBNAME) suffix of the IOA Access Method data index file. The default setting for this parameter is the DBFILE parameter followed by "I".

This utility processes both the data and index components of a IOA Access Method file.

If KEYFROM and KEYTO parameters are not specified or are specified as blank, all records are printed.

Example for IOADPT

To print the Control-D history database (HST) in SNAP dump format, use the following JCL statement:

Copy
//PRINT EXEC IOADPT,FUNC=0,DBFILE=HST,DBPREFA=&DBPREFD

IOADPT Control-D Samples

For an example of how to print Control-D IOA Access Method file record contents, see the CTDUFDPT sample job in the Control-D JCL library.

IOADPT Control-M/Tape Samples

The IOADPT utility is used by the CTTDPT job in the Control-M/Tape JCL library.

IOADPT IOA Samples

The IOADPT utility is used by the following jobs in the IOA JCL library:

Table 61 IOADPT Jobs

Job

Description

IOADBSPT

Prints the IOA Variable Database Definition file

IOACOLPT

Prints the IOA Variable Database Column file

IOAVARPT

Prints the IOA Variable Database Variables file

IOADUL – Unload IOA Access Method File Contents

The IOADUL utility is used to unload the record contents of an IOA Access Method file data component a sequential file.

When using the IOADUL utility, consider the following:

  • This utility can run in parallel with IOA monitors. It is not necessary to shut down monitors for any INCONTROL product when running this utility.

  • IOADUL cannot be used for Control-M/Analyzer files.

This utility is typically run to migrate an IOA Access Method file to another DASD volume. In this case, perform the following steps:

  1. Run the IOADUL utility to unload the IOA Access Method file data component’s records to a sequential data set.

  2. Allocate and format a new IOA Access Method file on a DASD volume using the IOADBF utility.

  3. Run the IOADLD utility to reload the IOA Access Method file data component records from the sequential data set previously produced by the IOADUL utility.

  4. Run the appropriate index rebuilding utility to rebuild the IOA Access Method file index component, based on the contents of the data component:

    • For IOA databases, use the IOADBIB utility.

    • For Control-D, use the CTDDIB utility.

    • or the Control-V global index file, use the CTDGBIB utility.

    • For the Control-M/Tape media database, use the CTTBIX utility.

    • For the Control-M/Tape stacking database, use the CTTDBIB utility.

Activating the IOADUL Utility

Copy
//UNLOAD EXEC IOADUL,
//   DBFILE=logical_data_filename,SQFILE=seqfilename0[,
//   RBAOFF=offset][,FROMKEY=fkey][,TOKEY=tkey][,
//   DBPREFA=prefix_filename][,
//   DBINDEX=logical_index_filename]
//   DISPO=jcl_disp_val

IOADUL Parameters

The following parameters can be specified to the utility in the EXEC statement that invokes the IOADUL JCL procedure:

Table 62 IOADUL Parameters

Parameter

Description

DBFILE

The identifier name (DBNAME) suffix of the IOA Access Method file

SQFILE

The output sequential file data set name suffix

RBAOFF

The RBA offset in the index record key pointing to the data component record. The default setting for this parameter is 0.

For Control-M/Tape, this parameter can be set to 0, because the offset is automatically calculated within the utility program.

FROMKEY

The value of the record key from which to copy. Optional.

TOKEY

The value of the record key until which to copy. Optional.

DBPREFA

The high level qualifier of the database file. Instead of specifying a prefix file name, you can use the &DBPREFx variable, where x is one of the following database product IDs:

Valid values are:

  • B – Control-M/Analyzer

  • D – Control-D

  • T – Control-M/Tape

DBINDEX

The identifier name suffix of the IOA Access Method index file. The default is the DBFILE parameter concatenated with "I".

DISPO

The allocation disposition for the output sequential file. The value of the DISPO parameter is assigned to the JCL DISP parameter of the output sequential file. The default is (,CATLG).

If FROMKEY and TOKEY parameters are not specified or are specified as blank, all records are copied.

For a complete list of the files this utility supports, see the IOA administration chapter of the INCONTROL for z/OS Administrator Guide.

Example for IOADUL

Copy
//UNLOAD EXEC IOADUL,DBFILE=PRM,SQFILE=PRMSEQ,
         DBPREFA=&DBPREFB

IOADUL Control-D Samples

For an example of how to print Control-D IOA Access Method file record contents, see the CTDUFDUL sample job in the Control-D JCL library.

IOADUL Control-M/Tape Samples

The IOADUL utility is used by the CTTDBDUL job in the Control-M/Tape JCL library.

IOADUL IOA Samples

The IOADUL utility is used by the following jobs in the IOA JCL library:

Table 63 IOADUL Jobs

Job

Description

IOADBSUL

Unloads the IOA Variable Database Definition file

IOACOLUL

Unloads the IOA Variable Database Column file

IOAVARUL

Unloads the IOA Variable Database Variables file

IOAFRLOG – Allocate and Format the IOA Log File

This utility is obsolete. To format the IOA Log File (maintaining or modifying the size of the file), use ICE Customization for IOA step "Customize IOA Dataset Parameters."

IOAFRNRS – Allocate and Format the IOA Manual Conditions File

This utility is obsolete. To format the IOA Manual Conditions (NRS) File and the IOA Manual Conditions Synchronization (NSN) file, use ICE Customization for IOA step "Customize IOA Dataset Parameters."

IOAGLV – Utility for managing IOA Global Variables

The IOAGLV utility runs as a batch job and enables the users to manage IOA Global variables.

IOA Global variables are kept in the IOAVAR database and are loaded to a memory pool during the starting of the Control-O or CMEM monitor. This utility handles IOA Global variables in the IOAVAR memory pool.

The IOA Global variable has the name and the value. The layout of complete variable name is path\varname, where path can contain several levels started from \M or \O and separated by ‘\’. The following paths can be specified in the IOA Global variables used in Control-M:

  • \M

  • \M\application

  • \M\application\group

  • \M\application\group\job

  • \M\POOLS\poolname

The utility can perform the following actions:

  • list paths matching the path prefix specified in the input parameter

  • view the variable names and values related to the path or path prefix specified in the input parameter

  • load variables from a dataset with the path specified in the input parameter

  • delete variables from the specified path or delete one specified variable

  • add new variables (name and value) or update existing variable values

The utility with the functions updating IOA Global variables cannot be submitted in parallel with the online IV screen, which enables the users to update the IOAVAR database.

IOAGLV Parameters

The utility parameters are specified in the SYSIN DD input stream. They must be specified in the following order:

  1. General parameters

  2. Command statements

The general parameters define the working mode of the utility and are described in the following table:

Table 64 IOAGLV general parameters

Parameter

Description

MODE

Determines whether the utility runs in a production environment or only as a simulation.

  • PROD – The utility updates the IOA Global Variables pool as it is specified in the command statements. Default.

  • TEST – The utility only runs as a simulation, reporting about all the updates specified in the command statements, but the data is not actually updated in the pool.

The TEST mode is very useful for actions updating data in the IOA Global Variables pool (such as when using the LOAD, DELETE, and SETVAR functions). It is recommended that you first run the utility in TEST mode for these functions, before running it in PROD mode.

The command statements contain a command, which determines the action that the utility will perform, followed by one or more keyword parameters, which qualify the action. In general, only one command statement can be specified in one utility run, with the exception of the SETVAR command.

The following commands can be specified for the utility:

Table 65 IOAGLV command statements

Statement

Description

LIST PATH=path

A list of paths related to the specified PATH prefix is printed. The list is sorted according to alphanumeric and hierarchic order.

VIEW PATH=path

A list of variable names and their values related to the specified path or path prefix is printed. The list consists of the complete variable names (path\varname) sorted according to alphanumeric and hierarchic order.

LOAD PATH=path FROM=dsname

Loads variables specified in the dsname file. The variables in the dsname file must be in the varname=value format and must not include a path, since the variables are loaded with the path specified by the PATH parameter.

If path\varname already exists, the variable value will be overwritten with the new value.

DELETE PATH=path| VARNAME=path\varname

If PATH=path is specified, all the variables related to the specified path are deleted.

If VARNAME=path\varname is specified, only the specified variable is deleted.

SETVAR VARNAME=path\varname VALUE=value

Adds or modifies the variable specified by the VARNAME parameter.

If the variable does not exist, it will be added with the specified value.

If the variable already exists, its value will be overwritten with the value specified by the VALUE parameter.

The SETVAR command can be specified several times in one utility run, to add or update several variables.

The keyword parameters specified for the commands are described in the following table:

Table 66 IOAGLV command parameters

Parameters

Description

PATH

The path or path prefix of the IOA Global Variable name.

The path must be started with a backslash character (\) and can contain from one to four levels, separated by ‘\’s.

The valid path level values are:

  • first level: an ‘M’ or ‘O’

  • second level: a word with length from 0 to 20 characters

  • third level: a word with length from 0 to 20 characters

  • fourth level: a word with length from 0 to 8 characters

This parameter is mandatory for the LIST, VIEW, and LOAD commands, but optional for the DELETE command. It cannot be specified for other commands.

FROM

The dataset name from which the IOA Global Variables are loaded to the IOAVAR pool. Maximum length is 44 characters.

This parameter is mandatory for the LOAD command. It cannot be specified for other commands.

VARNAME

Complete variable name in the form path\varname. The path layout is the same as for the PATH parameter. varname can be a word containing any character (without embedded spaces). If this parameter value does not fit on one line, it can be continued on the following lines from any position.

The maximum length of the complete variable name is 138 characters.

This parameter is mandatory for the SETVAR command, but optional for DELETE command. It cannot be specified for other commands.

VALUE

Value of the variable. Can contain any character. If the value does not fit on one line, it can be continued on the following lines from any position. If value contains embedded spaces, it must be enclosed in apostrophes.

IOAGLV Output

The IOAGLV utility generates the output reports and messages to the file referred to by the DAPRINT DD statement. The messages are described in the INCONTROL for z/OS Messages Manual. Different output reports are issued for different commands, as shown in the examples below.

Activating the IOAGLV Utility

Copy
//IOAGLV EXEC IOAGLV
//SYSIN DD *
[ MODE= PROD|TEST ]
 LIST PATH=path  |
 VIEW  PATH=path  |
 LOAD  PATH=path  FROM=dsn |
 DELETE PATH=path | VARNAME=path\varname  |
 SETVAR VARNAME=path\varname  VALUE=value
.......
[SETVAR VARNAME=path\varname  VALUE=value ]

IOAGLV Return codes

Table 67 IOAGLV Return Codes

Code

Description

0

The utility ended successfully.

4

The utility ended with warnings.

8

The utility ended with errors.

16

An error was detected in the input parameter.

Examples for IOAGLV

The following examples illustrate the use of the utility:

IOAGLV Example 1

Copy
//IOAGLV EXEC IOAGLV
//SYSIN DD *
[ MODE= PROD|TEST ]
 LIST PATH=path  |
 VIEW  PATH=path  |
 LOAD  PATH=path  FROM=dsn |
 DELETE PATH=path | VARNAME=path\varname  |
 SETVAR VARNAME=path\varname  VALUE=value
.......
[SETVAR VARNAME=path\varname  VALUE=value ]

In this example all paths with the prefix \M\APPL1 are listed in output report.

If the IOAVAR pool contains the following variables:

Copy
\M\APPL1\GR1\JOB1\VAR1
\M\APPL1\GR1\JOB1\VAR2
\M\APPL1\GR2\JOB2\VAR1
\M\APPL1\GR3\VAR1
\M\APPL1\GR3\VAR2

the output report looks as follows:

Copy
*** LIST OF GLOBAL VARIABLES PATHS ***
\M\APPL1\GR1\JOB1        002 VARIABLES
\M\APPL1\GR2\JOB2        001 VARIABLES
\M\APPL1\GR3             002 VARIABLES

IOAGLV Example 2

Copy
IOAGLV EXEC IOAGLV
//SYSIN DD *
 VIEW PATH=\M\POOLS\MYPOOL
/*

In this example the list of all variables (names and values) in the path \M\POOLS\MYPOOL are printed. The output report looks as follows:

Copy
      *** LIST OF VARIABLES ***
   
\M\POOLS\MYPOOL\VAR1      value_1
………………………………………………
\M\POOLS\MYPOOL\VARn      value_n

IOAGLV Example 3

Copy
IOAGLV EXEC IOAGLV
//SYSIN DD *
 LOAD PATH=\M\POOLS\MYPOOL  FROM=IOAGLV.VARS
/*

In this example the global variables prepared in the IOAGLV.VARS dataset are loaded to the IOAVAR pool with the \M\POOLS\MYPOOL path.

If the dataset IOAGLV.VARS contains the following lines:

Copy
VAR1=val1
VAR11=val11
VAR2=val2

The following variables are added to IOAVAR pool:

Copy
\M\POOLS\MYPOOL\VAR1      val1
\M\POOLS\MYPOOL\VAR11    val11
\M\POOLS\MYPOOL\VAR2      val2

IOAGLV Example 4

Copy
IOAGLV EXEC IOAGLV
//SYSIN DD *
 MODE=TEST
 DELETE PATH=\M\POOLS\MYPOOL
/*

In this example all variables with the path \M\POOLS\MYPOOL are deleted from the IOAVAR pool. The utility works in simulation mode. The data is not actually deleted, but only a list of the deleted variables is printed.

IOAGLV Example 5

Copy
IOAGLV EXEC IOAGLV//SYSIN DD *
 MODE=PROD
 SETVAR VARNAME=\M\POOLS\MYPOOL\VAR1
                VALUE=val1
 SETVAR VARNAME=\M\APP\GR\JOB1\LONG_VALUE
                 VALUE=’My very long value including embedded blanks’
                               ‘ and specified in two lines’
/*

In this example two variables are added to the IOAVAR pool. Since the second value does not fit on one input line, it is specified in two lines. Since the value includes embedded blanks, the lines are enclosed in apostrophes.

IOALDNRS – Load IOA manual conditions file

This utility creates and loads the IOA Manual Conditions file that can be viewed using the IOA Manual Conditions screen described in the online facilities chapter of the INCONTROL product-specific user guides. The utility is usually run every day after the New Day procedure finishes executing.

To identify conditions that are placed in the IOA Manual Conditions file, the utility first performs a search for all prerequisite IN conditions required for the submission of jobs, missions, or reports on the particular day. The search for prerequisite IN conditions is performed by checking the job scheduling definitions of all jobs in the Active Jobs file and by checking the mission definitions of missions in the Active Missions file.

Once the prerequisite IN conditions have been identified, the utility eliminates non-manual conditions from the list to arrive at the list of manual conditions that need loading. A prerequisite IN condition is not included in the IOA Manual Conditions file if it satisfies either of the following criteria:

  • The prerequisite condition is added to the IOA Conditions file by an OUT or DOCOND statement in a job, mission, or report that is active that day.

  • The prerequisite condition already exists in the IOA Conditions file.

All prerequisite IN conditions that do not meet the above criteria are assumed manual conditions and are placed in the IOA Manual Conditions list.

Through parameters passed to the utility, it is possible to exclude the Active Jobs file and/or the Active Missions file from the search for manual conditions. Of course, if both files are excluded, no manual conditions are found, even if they exist.

Every time the utility is activated, the IOA Manual Conditions file is recreated and all previous conditions are automatically deleted from the file. It is possible to override this default by using parameter ADDMODE.

This utility can be used in conjunction with ADDMNCND KeyStroke Language utility, which is referred to in the Keystroke Language (KSL) User Guide.

The conditions to be included in the file can be limited by control statements supplied using the DALNRIN DD statement (or SYSIN).

IOALDNRS Parameters

Table 68 IOALDNRS Parameters

Parameter

Description

IGNORE

Indicates conditions to be ignored during the building of the IOA Manual Conditions file. Valid values are:

  • IN prefix – All conditions beginning with the specified prefix are ignored when the file is created.

  • OUT prefix – Conditions defined in an IGNORE statement in parameter OUT that begin with the specified prefix are ignored by the algorithm used to build the IOA Manual Conditions file. An asterisk (*) signifies that all OUT parameters are ignored.

  • CODES prefix – Conditions defined in an IGNORE statement in parameter DO COND that begin with the specified prefix are ignored by the algorithm used to build the IOA Manual Conditions file. An asterisk (*) signifies that all DO COND parameters are ignored.

Specifying IGNORE xxx (OUT/CODES) exempts the xxx (OUT or DO COND) condition from the rule stated earlier. A prerequisite IN condition is not included in the IOA Manual Conditions file if it is added to the IOA Conditions file by an OUT or DO COND statement in a job, mission, or report that is active that day.

  • WHEN prefix – Conditions defined in an IGNORE statement in parameter WHEN DO COND that begin with the specified prefix are ignored by the algorithm used to build the IOA Manual Conditions file. An asterisk (*) signifies that all WHEN DO COND parameters are ignored.

  • CTM STATUS ENDED – IN conditions for jobs in the Active Jobs file that have finished executing (ended OK or NOTOK) are ignored by the algorithm used to build the IOA Manual Conditions file. OUT conditions set by these jobs are not ignored. If this parameter is used, parameter CONTROLM must be set to YES.

  • CTD STATUS ENDED – Manual conditions for missions in the Active Missions file that have finished executing (ended OK or NOTOK) are ignored by the algorithm used to build the IOA Manual Conditions file. If this parameter is used, parameter CONTROLD must be set to YES.

CONTROLM

Determines whether information in the Control-M Active Jobs file are used in the calculation that builds the IOA Manual Conditions list. Optional. Default taken from installation parameters. Valid values are:

  • Y (Yes) – Include Control-M information in the calculation that builds the IOA Manual Conditions file.

  • N (No) – Build the IOA Manual Condition file based on Control-D or Control-V information only.

CONTROLD

Determines whether information in the Control-D Active Missions file is used in the calculation that builds the IOA Manual Conditions file. Optional. Default taken from installation parameters. Valid values are:

  • YES – Include Control-D information in the calculation that builds the IOA Manual Conditions file.

  • NO – Build the IOA Manual Conditions file based on Control-M information only.

ADDMODE

If this parameter is specified, when the existing Manual Conditions file is deleted, only manual conditions from that file that were added (using the ADD command) to the IOA Conditions file are retained and appear in the new Manual Conditions file.

When Control-M, and Control-D or Control-V, are active, you should use a shared control parameters member.

Activating the IOALDNRS Utility (and Example)

Figure 11 IOALDNRS – Example

Copy
// EXEC IOALDNRS//DALNRIN DD *
IGNORE IN CICS
IGNORE IN IMS
IGNORE OUT DB-FILE
IGNORE CODES DB-FILE
CONTROLM YES

IOALDNRS Return Codes

Table 69 IOALDNRS Return Codes

Code

Description

0

Operation performed successfully

4

File is full; no more space to add conditions

8

Critical error, list not created

IOALOGI – Build and rebuild Index file for the IOA Log file

The IOALOGI utility builds, rebuilds, or updates the IOA Log Index file. The new Index file corresponds to information contained in the IOA Log file.

Before building the Index file for the first time, the Index file to be built must be allocated and formatted prior running the IOALOGI utility.

This utility is used in two cases:

  • When a new Index file is first created. In this case:

    • Format the Index file using the IOADBF utility

    • Create the Index file using the IOALOGI utility

  • When the current Index file does not correspond to information contained in the IOA Log file. In this case:

    • Do not format the old Index file

    • Execute the IOALOGI utility

The Index file is not updated together with the IOA LOG file. Run the IOALOGI utility periodically to update the Index file.

IOALOGI Parameters

The parameters listed in Table 70 should be specified for the IOALOGI utility in the EXEC statement that invokes the IOALOGIB JCL procedure.

Table 70 IOALOGI Parameters

Parameter

Description

KEYIN

Name of the IOA library member that contains the statements defining which records to include, and how the keys should be built

D

Data set name suffix of the IOA library containing the IOA Access Method file definition statements member. The member name is specified using parameter M, described below.

M

Name of the IOA library member that contains the IOA Access Method file definition statements, and whose data set name suffix is specified using parameter D, described above.

DD statement DAFRM

When the IOALOGI utility updates an old IOA LOG Index file, the DD statement DAFRM specifies the name of the IOA library containing the IOA Access Method file definition statements member. This member is used to format the IOA LOG Index file. The formatting is executed when the old IOA LOG Index file is not valid and updating the old IOA Log Index file is not possible. After the formatting, the utility rebuilds the IOA LOG Index file.

Activating the IOALOGI utility (example)

Copy
//IOALOGI  EXEC IOALOGI,KEYIN=KEYLOGI,M=IOADLOGI,D=INSTWORK
//DALOGI   DD DISP=SHR,DSN=&DBPREFA..LOGI.E000             
//DALOG    DD DISP=SHR,DSN=&DBPREFA..LOG                   

The IOALOGI utility is used by the IOALOGIB job in the IOA JCL library.

IOALOGI Return codes

Table 71 IOALOGI return codes

Code

Description

0

Operation performed successfully

Other

Operation failed

IOALOGXC – Activate or deactivate use of the IOA LOG Index file

The IOALOGXC utility is used to activate or deactivate use of the IOA Log Index file by setting or resetting the index indication in the IOA Log file Control record (Record 0).

The IOA Log Index file improves the viewing process of IOA Log messages with the ORDERID (OID) parameter because it provides direct access to specific records in the IOA Log file.

Use of the IOA LOG Index file is optional, and can be activated or deactivated dynamically by the IOA Administrator.

IOALOGXC Parameters

Table 72 IOALOGXC parameter

Parameter

Description

FUNC

Function to be performed:

    • ACT – Activates use the IOA LOG Index file

    • DACT – Deactivates use the IOA LOG Index file

Activating the IOALOGXC utility (example)

Copy
//IOALOGXC EXEC IOALOGXC,FUNC=ACT     

The IOALOGXC utility is used by the IOALOGXC job in the IOA JCL library.

IOALOGXC Return codes

Table 73 IOALOGI return codes

Code

Description

0

Operation performed successfully

Other

Operation failed

IOALOGXP – Print the IOA Log Index file

The IOALOGXP utility prints the IOA LOG Index file records in SNAP dump format.

IOALOGXP Parameters

The parameters listed in Table 74 can be specified for the IOALOGXP utility in the EXEC statement that invokes the IOALOGXD JCL procedure

Table 74 IOALOGXP parameters

Parameter

Description

FUNC

Prints the IOA Log Index records. The default setting for this parameter is 1

KEYFROM

The value of the record key from which to print. Optional.

KEYTO

The value of the record key until which to print. Optional.

RBAOFF

The RBA offset in the record key pointing to the data component record. The default setting for this parameter is 0.

DALOGI

The name of the IOA Log Index file.

If the KEYFROM and KEYTO parameters are not specified or are blank, all records are printed.

Activating the IOALOGXP utility (example)

Copy
//IOALOGXP EXEC IOALOGXP,                 
//         DALOGI=&DBPREFA..LOGI.E000,    
//         KEYFROM=,                       
//         KEYTO=

The IOALOGXP utility is used by the IOALOGXD job in the IOA JCL library.

IOALOGXP Return codes

Table 75 IOALOGXP Return Codes

Code

Description

0

Operation performed successfully

Other

Operation failed

IOANOTE – Write a Message to the IOA Log File

This utility writes a message to the IOA Log file. It can be invoked as a started task (STC), as a job step, or from another program. On terminals supporting color, messages written by the IOANOTE utility appear on the Log screen in a different color than other messages, making them more readily identifiable.

IOANOTE Parameter

The message to be written to the Log file is specified using the following parameter:

Table 76 IOANOTE Parameter

Parameter

Description

PARM

Text of the message to be written

Activating the IOANOTE Utility

As a job step

Copy
// EXEC IOANOTE,PARM=’text’

As a started task

Copy
S IOANOTE,PARM='text'

From another program

Copy
 CALL CTMNOTE,(NOTELENG)
 ...
NOTELENG DC H’80’
 DC CL80’any customer message text’

Before executing the call to CTMNOTE, you must place the program into AMODE 24. The message generated by the IOANOTE utility is written to the IOA log under message ID MSG999I.

IOANOTE Return Codes

Table 77 IOANOTE Return Codes

Code

Description

0

Operation performed successfully

4

No parameters passed to utility program

8

Operation failed

Example for IOANOTE

Copy
// EXEC IOANOTE,PARM='PAYROLL APPLICATION MESSAGES BEGIN HERE'

IOAOPR – Issue Operator Commands Using a Job or STC

The IOAOPR utility can be used to issue operator commands (MVS, JES2, JES3, VTAM, and so on). It can be activated as a job step or as a started task, and allows full control over when a command is issued and what to do afterwards. If Control-M is installed, it is also possible to send the command to any computer (because Control-M can schedule a started task in any computer).

Each command issued by the utility is recorded in the IOA Log file.

The utility can execute commands from a list supplied in the DA34F DD statement. To activate the utility (for example, as a job step)

Copy
//   EXEC IOAOPR,CMDMEM=mem_name

where mem_name is the name of a member containing a list of operator commands to be executed.

To activate the utility for one command, use the PARM parameter, as follows:

Copy
//   EXEC IOAOPR,PARM=`command'

If Control-M is installed, it is possible to activate the utility using Control-M facilities. The following is an example of a schedule definition for a single command in a specified computer:

Copy
MEMNAME IOAOPR  MEMLIB  M3,PARM='$PIA'
 TASKTYPE STC

Use of this utility or program is limited to authorized personnel. Most popular security products support control of the use of programs by program name.

The utility can also issue JES3 commands (under a JES3 environment). A JES3 command is identified as such only if it begins with the IOA JESCHAR. Under JES3 it is possible to specify commands starting with more than one type of character. A command that starts with a valid JES3 command prefix and not with the IOA JESCHAR is sent for execution but cannot be executed by JES (without any indication from the IOAOPR utility).

IOAPFSTC – Printing performance statistics reports

The IOAPFSTC utility is used for printing IOA Application Server (IOAAS) performance statistics reports. The statistics records are collected in the Permanent User file while the IOAAS is running and can be printed out any time afterwards. The reports can be printed for specific periods of time, LPARs, and IOAAS address spaces as specified by the utility parameters. The utility can also remove statistics records that are older than one year, which were not overridden by new data.

Performance statistics reports can be printed for the following purposes:

  • Provide tables for easy transformation into Microsoft EXCEL worksheets. These tables allow easier analysis of performance problems. The tables are printed out to the DAPFSXL DD-statement.

  • Provide tables for viewing and analysis by the customers or support staff. These tables allow customers and support to follow up IOAAS workload changes. The tables are printed out to the DAPFS DD-statement.

Activating the IOAPFSTC Utility

Submit an IOAPFSTC utility job as follows:

Copy
//IOAPFSTC   EXEC IOAPFSTC
//IOAPFSTC.SYSIN DD *;
[FUNCTION=PRINT|CLEAN]
[REPORT=TOTAL|DETAIL|ALL]
[SYSNAME=LPAR_name]
[STCNAME=IOAAS_address_space_name]
DATEFROM=dd/mm/yy | mm/dd/yy | yy/mm/dd
DATETO=dd/mm/yy | mm/dd/yy | yy/mm/dd
[TIMEFROM=hh:mm]
[TIMETO=hh:mm]
[MODE = TEST|PROD]
[DAYS = N]
/*

IOAPFSTC Parameters

The parameters listed in Table 78 can be specified in the SYSIN DD input stream as keyword statements.

Table 78 IOAPFSTC parameters

Parameter

Description

FUNCTION=function

Where function indicates function to be performed. Valid functions are PRINT and CLEAN. Default is PRINT.

All the following parameters are processed when FUNCTION=PRINT, except the two parameters DAYS and MODE.

When FUNCTION=CLEAN only the two parameters DAYS and MODE are relevant.

Optional.

REPORT=type

Where type indicates the type of reports to be printed. Valid report types are:

  • DETAIL – the report containing the detail information per IOA Application Server requests is printed. The statistics counters are printed separately per IOAAS request type.

    A corresponding file specified by the DAPFSXL DD statement is issued for processing by Microsoft EXCEL.

  • TOTAL – the total report containing the summary statistics information per time intervals is printed. The statistics counters are summarized for all requests received during the interval.

    A corresponding file referred by the DAPFTXL DD statement is issued for processing by EXCEL. Default.

  • ALL - both total and detail reports and corresponding files for EXCEL are issued.

DATEFROM

Earliest date of the statistic records to be included in the reports. The date format can be one of the following: mm/dd/yy, dd/mm/yy, or yy/mm/dd (depending on the site standard defined by the DATETYP parameter in the IOAPARM installation member). Obligatory.

DATETO

Latest date of the statistic records to be included in the reports. The date format can be one of the following: mm/dd/yy, dd/mm/yy, or yy/mm/dd (depending on the site standard defined by the DATETYP parameter in the IOAPARM installation member). Obligatory.

TIMEFROM

The beginning of the time of day for the dates to be included in the reports. The time format is hhmm. Optional.

If one of the parameters, either TIMEFROM or TIMETO, is specified, the second must also be specified. If both of these parameters are not specified, the reports contain information of the entire days for the date interval specified by the DATEFROM and DATETO parameters.

TIMETO

The end of the time of day for the dates to be included in the report. The time format is hhmm. Optional.

See note for TIMEFROM.

STCNAME

Indicates the name of the IOA Application server address space for which the statistic reports are issued. Optional. If this parameter is omitted, statistic reports for all IOA Application Server address spaces are issued.

SYSNAME

Indicates the name of the LPAR for which the statistic reports are issued. Optional. If this parameter is omitted, statistic reports for all LPARs are issued.

MODE

Run mode.

Valid values are:

  • PROD - A normal production run.

  • TEST - A simulation run that produces report only. Default.

DAYS

The retention period of the statistical records.

The statistic records with an older age will be deleted from Permanent User File.

Valid values are:

  • -1 - remove all statistic records from Permanent User File.

  • 0 - remove all statistic records from Permanent User File except today.

  • N - remove all statistic records from Permanent User File with age older than N. Default = 365

IOAPSCK – Check password validation for INCONTROL products

The purpose of the IOAPSCK utility is to check the validation of passwords for INCONTROL products. The utility indicates whether:

  • the password is valid

  • the password has expired

  • the password is about to expire

If JCL PARM is set to ALL, then the IOAPSCK utility checks the validity of passwords for all INCONTROL products; otherwise, you can specify a particular product. For a list of valid parameters, see IOAPSCK Input.

IOAPSCK Components

The IOAPSCK utility contains the following part:

IOAPSCK

Performs the check (Module)

Activating the IOAPSCK utility

A sample job can be found in the IOAPSCK member in the IOA.*.SAMPLE library.

IOAPSCK Input

Table 79 IOAPSCK input

Input

Description

CTD

Control-D

CTM

Control-M

CTB

Control-M/Analyzer

CTR

Control-M/Restart

CTT

Control-M/Tape

CTV

Control-V

ALL

All INCONTROL products (default)

IOAPSCK Return codes

Table 80 IOAPSCK return codes

Code

Description

00

Function executed successfully.

04

Environment initiation problem. For more information, check the IOAENV macro return code.

 

 

08

12

20

Severe, bad JCL parameter.

Results for IOAPSCK

A message that describes the status of the selected product’s password is displayed. The list of messages is found in the PASF9 member.

Example for IOAPSCK

Copy
//IOAPSCK JOB ,IOAPSCK,NOTIFY=&SYSUID,MSGCLASS=X,CLASS=A
//*                                                    
//*                                                    
//         JCLLIB  ORDER=IOA.V700.PROCLIB              
//         INCLUDE MEMBER=IOASET                       
//*                                                    
//PASSCHCK EXEC PGM=IOAPSCK,PARM='ALL'                 
//         INCLUDE MEMBER=&IOAENV                      
//*                                                    

IOASDISC – Emergency Subsystem Disconnect

The IOASDISC utility forces the Subsystem Vector Table (SSVT) to disconnect from the Subsystem Control Table (SSCT) control block of the IOA subsystem.

Use this utility only when directed during upgrades or in an emergency situation. Do not use this utility without the advice of BMC Customer Support.

The IOASDISC utility procedure is located in the IOA.PROCLIB library.

Activating the IOASDISC Utility (and Example)

Copy
S IOASDISC,SSNAME=xxxx

where xxxx is the name of the installed IOA subsystem to be disconnected.

IOASDISC Return Codes

Table 81 IOASDISC Return Codes

Code

Description

0

Operation performed successfully

other

Operation failed

IOATEST – Simulate Production Environment Events

This utility simulates various events in the production environment. For example, it can simulate step termination codes or cause a step to "wait" a specified interval.

IOATEST Parameters

Table 82 IOATEST Parameters

Parameter

Description

CMD

Issue an operator command. The command can be either an MVS/JES command or, when MVS is running under VM, a CP command. (CP commands must start with characters CP.) Maximum text length: 76 characters.

The IOATEST utility does not support issuing commands whose syntax requires a comma. To issue commands whose syntax includes commas, use the IOAOPR utility described on IOAOPR – Issue Operator Commands Using a Job or STC.

WTO

Write message to operator console. Maximum text length: 76 characters.

WTOR

Write message to operator console with reply. Maximum text length: 75 characters.

WTOM

Issue multiline message. major is the primary message line.

Subsequent minor lines are secondary message lines, delimited by a +++ line. A maximum of ten message lines are permitted.

Copy
WTOM= major
      Minor 1
      Minor 2
      minor n
      +++

ROUT

Valid route code from 0 through 16 (0 meaning no route code). Default: all route codes.

DESC

Valid descriptor code from 0 through 16. Default: 0 (none).

CONID

Console ID to which the message is issued. Valid range: 0 – 999. Default: master console, if one exists.

CONNAME

Name of the console to which the message is sent, or on that the command is issued.

SYSTEM

Name of the system (meaning, the MVSIMAGE) to which the message is sent, or on that the command is issued.

JOBNAME

Name of the job that issued the message.

JOBID

The JES2 or JES3 job ID of the job that issued the message.

Parameters SYSTEM, JOBNAME and/or JOBID can be used to simulate messages coming from another member of a Sysplex environment or JES3 complex.

DEFDELAY

The period, in hundredths of a second, that the program waits before a WTO or WTOR or WTOM message or command is executed and the program ends. 1 to 4 digits. Default: 100 (one second)

WAIT

Cause the step to wait n seconds. Valid range: 0 – 999.

TERM=Cnnnn

Condition code to be simulated. Valid range for nnnn: 0000 – 4095.

TERM=Unnnn

User abend code to be simulated. Valid range for nnnn: 0000 – 4095.

TERM=Snnn

System abend code to be simulated. Valid hexadecimal range for nnn: 000 – FFF.

WTO, ROUT, DESC, CONID, CMD, WAIT and TERM can also be specified in the PARM keyword of the EXEC job step. If this method is used, only the PARM parameters are executed in the following order: WTO, WAIT, TERM. When using PARM, DEFDELAY is always 0.

Example for IOATEST

Copy
WTOM= major
      Minor 1
      Minor 2
      minor n
      +++

Issues WTO message with the text "PROGRAM ERROR", waits 10 seconds and terminates the step with user abend U0008.

Figure 12 IOATEST – Example

Copy
// EXEC IOATEST
//SYSIN DD *
CMD=D T
TERM=C0004
//

Issues the operator command ‘D T’ and then terminates with condition code C0004.

IOAVERFY – Verify IOA File Installation and Status

The IOAVERFY utility can be used to perform the following tasks:

  • Verify INCONTROL product installation.

  • Produce reports on the utilization of various IOA files.

  • Produce a report describing invalid records in the IOA Conditions file, the Control-M Resources file, the Control-M Active Jobs file, or the Control-M History Jobs file. (Invalid records can be automatically corrected during the same run.)

  • Verify and replace specified data in records of the Control-M Active Jobs file.

  • Verify the locking (ENQ) mechanism of the IOA and Control-M files from a multi-systems environment.

At least one of the following parameters must be specified to produce utility output:

  • DISPLAY

  • VERIFY

  • LIST

  • DIAGNOSE

  • VER/REP

IOAVERFY Parameters

Table 83 IOAVERFY Parameters

Parameter

Description

DISPLAY

Controls the scope of display. Optional. Multiple DISPLAY statements can be specified. Valid parameters for this statement are:

  • ALL – Information, warning, and error messages are displayed. Default.

  • ERROR – Only error and warning messages are displayed.

VERIFY

Produces a report about the requested items. Multiple VERIFY statements can be specified.

VERIFY statement formats are:

  • VERIFY SYSTEM GENERAL
    Displays general information about the system environment.

  • VERIFY PASSWORD
    Displays CPU identification information required before requesting a new password.

  • VERIFY ENQ {qname|*|SHR*}

  • where qname is the IOA QNAME to be verified for its cross-systems scope. If *|SHR* is specified then the QNAME|SHRQNAM checked is the one which currently resides in the IOAPARM member of the IOA PARM library. The SHRQNAM is checked only if there is one specified in IOAPARM.

See the INCONTROL for z/OS Installation Guide for further information regarding the IOA QNAME and SHRQNAM parameters. See also Activating the IOAVERFY utility.

  • VERIFY FILE file_type

    where file_type indicates files to be reported on. The report is similar to the ISPF 3.2 Data Set Information display and includes attributes specific to that file. Valid values are:

    • ALL – Includes all files listed below.

    • AJF or CKP – Control-M Active Jobs file.

    • HST – Control-M History Jobs file.

    • AMF – Control-D Active Missions file.

    • CND – IOA Conditions file.

    • RES – Control-M Resources file.

    • NRS – IOA Manual Conditions file.

    • LOG – IOA Log file.

  • CKP and AJF are two names for the same Control-M file. Both names are supported.

  • If VERIFY FILE ALL is specified, the program determines which products are installed and displays information on all relevant file types.

  • For file_type CND a LONG condition occupies two slots (entries) on the IOA Condition file. Therefore, only for regular (non-long) conditions are the terms condition and entry synonymous in the IOAVERFY report.

For file_type LOG the IOA LOG Index file information and its status are printed, as well.

LIST

Prints information about the IOA environment. This statement helps BMC Customer Support during problem determination. Multiple LIST statements can be specified.

LIST statement formats:

  • LIST PARMS — prints the following information:

    • Members listed in the VERFYLIB member of IOA.PARM library

    • System information provided by the INFO screen

    • Information about partitions of the migration user file

    • Information about alternative indexes of the Control-D user files

    • Level of all modules

  • LIST SUBSYS subsys_name

    Displays subsystem control blocks and IOA parameter tables. subsys_name is the name of the subsystem whose control blocks are to be displayed. Optional. If omitted, the subsystem name specified in member IOAPARM is used. A snapshot dump is taken of all the data areas relating to the subsystem.

  • LIST ALL — both subsystems and parms

DIAGNOSE

Verifies the internal structural integrity of files processed by the utility. For example, the checking performed on the AJF includes:

  • validity checks of the pointers in record 0

  • proper sequencing of MIT and MIC (continuation) records

  • record RBA validation

  • internal chaining of record segments

If the CORRECT optional keyword (described below) is specified, records containing errors are automatically corrected.

Valid formats for a DIAGNOSE statement:

DIAGNOSE file_type [FORMAT [OID=xxxxx]]

or

DIAGNOSE file_type CORRECT

In the above statement, file_type indicates files to be processed by the DIAGNOSE statement. Valid values are:

  • ALL – Includes all files listed below

  • AJF – Control-M Active Jobs file

  • HST – Control-M History Jobs file

  • RES – Control-M Resources file

  • CND – IOA Conditions file

When file_type is AJF or CKP, two additional optional sub-parameters are allowed:

  • FORMAT invokes additional comprehensive field validation checking performed on all records of the Control-M AJF.

  • OID=xxxxx – When the FORMAT sub-parameter is specified, the additional OID=xxxxx parameter may be specified to limit the field validation operation to the specific AJF record whose order ID is xxxxx.

Multiple DIAGNOSE AJF FORMAT OID=xxxxx statements are permitted.

  • CORRECT. Optional keyword. Records are automatically corrected only if this keyword is specified. CORRECTive actions do not apply to field validation errors (FORMAT).

This parameter should be used only if requested by BMC Customer Support.

The IOAVERFY utility cannot be run with the CORRECT function while the Control-M monitor is active. However, online users can remain logged on.

BMC recommends that you not run the CORRECT function while the Control-D monitor, the Control-O monitor, or the IOA Functional monitor is active.

If the Active Jobs file is corrected by the IOAVERFY utility, you should then compress the file. For information about how to compress the Active Jobs file, see CTMCAJF – Maintain the Active Jobs File

ZAP

Identifies the file that is to be modified by means of VER and REP statements. Each VER statement must be preceded by a ZAP statement. The format of a ZAP statement is

Copy
ZAP FILE file_id

where file_id is one of the following:

  • AJF – the Control-M Active Jobs file

  • HST – the Control-M History Jobs file

  • RES – the Control-M Resources file

VER

Indicates information that is replaced with information in the REP statement that immediately follows. Each VER statement must be both

  • preceded by a ZAP statement

  • followed by a REP statement

VER statements and REP statements can be specified only for records in the following files:

  • the Control-M Active Jobs file

  • the Control-M History Jobs file

  • the Control-M Resources file

The VER statement is rejected if the data at the specified offset does not match the data specified in the VER statement. If a VER statement is rejected, the REP statement that follows it is ignored.

An appropriate error message is produced for each record that is rejected because of a VER/REP failure.

VER operands must appear between columns 1 and 80. VER statement format

Copy
VER rba type offset ver_format ver_data

where

  • rba is the RBA of the record to be verified. The RBA must be specified as a Hexadecimal value of two, four, or six digits.

  • type is the type of offset:

    • X – Hexadecimal value.

    • C – Character value.

  • offset is the location of the data to be replaced with the data in the REP statement. The first byte of the record always has an offset of 0.

  • If type is set to X, the offset must be a hexadecimal value with two or four digits. The maximum value cannot exceed 03FF.

  • If type is set to D, the offset must be a decimal value of one to four digits and cannot exceed 1023.

  • ver_format – Format of the data (specified in value ver_data) to be verified:

    • X – ver_data contains hexadecimal digits.

    • C – ver_data contains alphanumeric characters.

  • ver_data – Value to be replaced by the data specified in the REP statement that follows. The specified value must be enclosed in either single or double quotes.

  • If ver_format is X, ver_data must be specified as pairs of hexadecimal digits. A maximum of 48 hex digits (meaning, 24 pairs) can be specified.

REP

Indicates data that replaces the information in the immediately preceding VER statement. Optional, but each REP statement must be preceded by one VER statement.

VER statements and REP statements are specified only for records in the following files:

  • the Control-M Active Jobs file

  • the Control-M History Jobs file

  • the Control-M Resources file

REP operands must appear between columns 1 and 80. The format of a REP statement is:

REP rba type offset rep_format rep_data

where

  • rba, type and offset must be identical to the rba, type and offset specified in the preceding VER statement.

  • rep_format is the format of the specified rep_data:

    • C—Character value.

    • X—rep_data contains hexadecimal digits.

  • rep_data is the data that replaces the data specified in the preceding REP statement. The specified data must be enclosed in either single or double quotes.

If rep_format is set to X, rep_data must be specified as pairs of hexadecimal digits. A maximum of 48 hex digits (meaning, 24 pairs) can be specified.

If rep_format is C, rep_data must be a string of alphanumeric characters. Maximum length: 48 characters.

The data specified in the VER statement and the data specified in the REP statement must indicate strings of equal length. Therefore, if ver_data and rep_data are specified in different formats, the data that is specified in hexadecimal characters must contain twice as many characters as the data specified in alphanumeric characters, as illustrated in Example 2.

The IOAVERFY utility cannot be run with the VER/REP function while the Control-M monitor is active. However, online users can remain logged on.

Samples of VER statements and REP statements:

Example 1

Change the record with RBA 0 at offset x‘3F’ from x‘0003E8’ through x‘00045D’.

Copy
VER 00   X   3F X '0003E8'
REP 00   X   3F X '00045D'

Example 2

Change the record with RBA 0 at offset x‘0103’ from x‘000000’ through character string ‘JB1’.

Copy
VER 00   X 0103 X '000000'
REP 00   X 0103 C 'JB1'

Example 3

Change the record with RBA 1A95 at decimal offset 20 from character string ‘N28’ through character string ‘M04’.

Copy
VER 1A95 D   20 C 'N28'
REP 1A95 D   20 C 'M04'

IOAVERFY Sample reports

The following section shows different kinds of sample reports:

Sample report using the VERIFY FILE CND parameter

Copy
=======================       IOA CONDITIONS FILE      =====================
              DATA SET NAME:  BMCC.IOA6AC1.CND
              DDNAME:         DACNDF
   
                  GENERAL DATA
                     VOLUME SERIAL:        CACVD1
                     DEVICE TYPE:            3390
                     ORGANIZATION:             PS
                     RECORD FORMAT:             F
                     RECORD LENGTH:        32,760
                     BLOCK SIZE:           32,760
   
                  CURRENT ALLOCATION
                     ALLOCATED RECDS:          65
                     DEFINED RECDS:            65
   
                        UTILIZATION OF CONDITION ENTRIES
   
         +--------------+--------------+--------------+--------------+
         |    DAY OF    |     USED     |    PERCENT   |     FREE     |
         |    MONTH     |    ENTRIES   |     USED     |    ENTRIES   |
         +--------------+--------------+--------------+--------------+
         |       1      |        0     |       0      |    2,728     |
         |       2      |        0     |       0      |    2,728     |
         |       3      |        0     |       0      |    2,728     |
         |       4      |        0     |       0      |    2,728     |
         |       5      |        0     |       0      |    2,728     |
         |       6      |        0     |       0      |    2,728     |
         |       7      |        0     |       0      |    2,728     |
         |       8      |        0     |       0      |    2,728     |
         |       9      |        0     |       0      |    2,728     |
         |      10      |        0     |       0      |    2,728     |
         |      11      |        0     |       0      |    2,728     |
         |      12      |        0     |       0      |    2,728     |
         |      13      |        0     |       0      |    2,728     |
         |      14      |        0     |       0      |    2,728     |
         |      15      |    2,098     |      77      |      700     |
         |      16      |      150     |       5      |    2,578     |
         |      17      |       11     |       1      |    2,717     |
         |      18      |       58     |       2      |    2,670     |
         |      19      |       36     |       1      |    2,692     |
         |      20      |       10     |       1      |    2,718     |
         |      21      |        0     |       0      |    2,728     |
         |      22      |        0     |       0      |    2,728     |
         |      23      |        0     |       0      |    2,728     |
         |      24      |        0     |       0      |    2,728     |
         |      25      |        0     |       0      |    2,728     |
         |      26      |        0     |       0      |    2,728     |
         |      27      |        0     |       0      |    2,728     |
         |      28      |        0     |       0      |    2,728     |
         |      29      |        0     |       0      |    2,728     |
         |      30      |        0     |       0      |    2,728     |
         |      31      |        0     |       0      |    2,728     |
         |     STAT     |        0     |       0      |    2,728     |
         +--------------+--------------+--------------+--------------+

Prerequisite conditions in the IOA Conditions file are held in 32 slots. The first 31 slots contain only conditions that have a date reference to a specific day-of-the-month.

The 32nd slot is used for prerequisite conditions that contain the STAT attribute instead of a date.

The sample report shows that, for example, on day 15, 77 percent (2098/2728) of the entries are being used.

Each Long condition takes up 2 slots.

Sample report using the VERIFY FILE AJF parameter

Copy
==============        ACTIVE JOBS FILE        =================
                                                                               
            DATA SET NAME:  PFVN.CTMD618.AJF                                  
             DDNAME:         DAAJFT                                            
                                                                               
                 GENERAL DATA                                                  
                  VOLUME SERIAL:        SYST09                 
                  DEVICE TYPE:            3390                 
                  ORGANIZATION:             PS                 
                  RECORD FORMAT:             F                 
                  RECORD LENGTH:         1,024                 
                  BLOCK SIZE:            1,024                 
                                                               
               CURRENT ALLOCATION                              
                  ALLOCATED RECDS:     100,023                 
                  DEFINED RECDS:       100,000                 
                                                               
               CURRENT UTILIZATION                             
                  INDEX RECDS:           6,138                 
                  USED RECDS:           84,051                 
                  FREE RECDS:            9,811                 
                  AVG # RECDS/JOB:        2.00                 
                  FREE SPACE-NEW JBS:    4,905                 
                  # RECDS REUSABLE:        719
                  AJF SPACE REUSE:      ACTIVE

'AVG # RECDS/JOB: 2' means that, on average, two records on the AJF file are required to hold the information for one job.   Since the AJF file can hold a maximum of 100,000 records (DEFINED RECDS), it can hold approximately a maximum of 50,000 jobs. 'USED RECDS:' is 84,051, which means that there are approximately 42,025 jobs on the AJF file. In percentage terms, approximately 84% of the AJF file is used to hold jobs. Another six percent (6,138/100,000) of the AJF is used to hold index records. Therefore, a total of approximately 90% of the AJF is used for both jobs and indexes.

FREE SPACE-NEW JBS is calculated by dividing 9,811 (FREE RECDS) by 2.00. The result is 4,905. This means that, in theory, 4,905 jobs can be added to the AJF file.   Note that when jobs are added to the AJF, index records are also created. Since approximately six percent (6,138/100,000) of the file is used to hold index records, this means that six percent must be subtracted from the 4,905 jobs that can be added to the AJF. Therefore, approximately 4,611 jobs can be added to the AJF.

If the Active Jobs File Space Reuse Facility is active (AJF SPACE REUSE: ACTIVE),
'# RECDS REUSABLE' specifies how many records on the AJF can be reused for new jobs. For more information about the Space Reuse Facility, see the INCONTROL Administrator Guide.

Sample report using the VERIFY FILE RES parameter

Copy
=======================    CONTROL-M RESOURCES FILE    =======================
                                                                                
             DATA SET NAME:  CTMP.V700.RES                                     
             DDNAME:         DARESF                                            
                                                                               
                 GENERAL DATA                                                  
                    VOLUME SERIAL:        IOAT25                               
                    DEVICE TYPE:            3390                               
                    ORGANIZATION:             PS                               
                    RECORD FORMAT:             F                               
                    RECORD LENGTH:        32,760                               
                    BLOCK SIZE:           32,760                               
                                                                               
                 CURRENT ALLOCATION                                            
                    ALLOCATED RECDS:          11                               
                    DEFINED RECDS:            11                               
   
  
                UTILIZATION OF RESOURCE ENTRIES                         
                                                                        
 +--------------+--------------+--------------+--------------+          
 |   TYPE OF    |     USED     |    PERCENT   |     FREE     |          
 |   RESOURCE   |    ENTRIES   |     USED     |    ENTRIES   |          
 +--------------+--------------+--------------+--------------+          
 | CONTROL      |        1     |       1      |    6,294     |          
 | QUANTITATIVE |        1     |       1      |    5,544     |          
 | QUANT. BASE  |        7     |       2      |      293     |          
 +--------------+--------------+--------------+--------------+          

This report shows that 6,294 Control resources can be added, and 293 new Quantitative resources can be added.

Another 5,544 Used slots are available at any one time. For example, if every job has at most one Quantitative resource, a maximum of 5545 can run (get a Used slot). For more information about the RESQNT# parameter and quantitative base slots and used slots, see the INCONTROL for z/OS Installation Guide.

Sample report using the VERIFY FILE NRS parameter

Copy
=======================   IOA MANUAL CONDITIONS FILE   ======================= 
                                                                               
             DATA SET NAME:  IOAP.V700.NRS                                     
             DDNAME:         DANRES                                            
                                                                               
                 GENERAL DATA                                                  
                    VOLUME SERIAL:        IOAT25                               
                    DEVICE TYPE:            3390                               
                    ORGANIZATION:             PS                               
                    RECORD FORMAT:             F                               
                    RECORD LENGTH:        32,760                               
                    BLOCK SIZE:           32,760                               
                                                                               
                 CURRENT ALLOCATION                                            
                    ALLOCATED RECDS:          33                               
                    DEFINED RECDS:            33                               
   
            UTILIZATION OF MANUAL CONDITION ENTRIES                    
                                                                       
+--------------------+----------------------+----------------------+----------------+
|    DAY OF          |     USED             |    PERCENT           |   FREE          |
|    MONTH           |    ENTRIES           |     USED             |   ENTRIES       |
+--------------------+----------------------+----------------------+-----------------+
|       1            |        0             |       0              |    5,240        |
|       2            |        6             |       1              |    5,234        |
|       3            |        6             |       1              |    5,234        |
|       4            |        7             |       1              |    5,233        |
|       5            |        6             |       1              |    5,234        |
|       6            |        6             |       1              |    5,234        |
|       7            |        6             |       1              |    5,234        |
|       8            |        6             |       1              |    5,234        |
|       9            |        6             |       1              |    5,234        |
|      10            |        5             |       1              |    5,235        |
|      11            |        6             |       1              |    5,234        |
|      12            |        6             |       1              |    5,234        |
|      13            |        5             |       1              |    5,235        |
|      14            |        6             |       1              |    5,234        |
|      15            |        6             |       1              |    5,234        |
|      16            |        6             |       1              |    5,234        |
|      18            |        0             |       0              |    5,240        |
|      19            |        0             |       0              |    5,240        |
|      20            |        0             |       0              |    5,240        |
|      21            |        0             |       0              |    5,240        |
|      22            |        0             |       0              |    5,240        |
|      23            |        0             |       0              |    5,240        |
|      24            |        0             |       0              |    5,240        |
|      25            |        0             |       0              |    5,240        |
|      26            |        0             |       0              |    5,240        |
|      27            |        0             |       0              |    5,240        |
|      28            |        0             |       0              |    5,240        |
|      29            |        5             |       1              |    5,235        |
|      30            |        1             |       1              |    5,239        |
|      31            |    2,508             |      48              |    2,732        |
|     STAT           |       26             |       1              |    5,214        |
+--------------------+----------------------+----------------------+----------------+

Prerequisite conditions in the IOA Manual Conditions file are held in 32 slots. The first 31 slots contain only conditions that have a date reference to a specific day-of-the-month.

The 32nd slot is used for prerequisite conditions that contain the STAT attribute, instead of a date.

The sample report shows that, for example, on day 31, 48 percent (2508/5240) of the entries are used.

Each Long condition takes up 2 slots.

Sample report using the VERIFY FILE HST parameter

Copy
=======================       HISTORY JOBS FILE        =======================
                                                                               
            DATA SET NAME:  PFVN.CTMD618.HST                                  
             DDNAME:         DAHIST                                            
                                                                               
                 GENERAL DATA                                                  
                  VOLUME SERIAL:        SYST09                 
                  DEVICE TYPE:            3390                 
                  ORGANIZATION:             PS                 
                  RECORD FORMAT:             F                 
                  RECORD LENGTH:         1,024                 
                  BLOCK SIZE:            1,024                 
                                                               
               CURRENT ALLOCATION                              
                  ALLOCATED RECDS:     100,023                 
                  DEFINED RECDS:       100,000                 
                                                               
               CURRENT UTILIZATION                             
                  INDEX RECDS:           6,138                 
                  USED RECDS:           84,051                 
                  FREE RECDS:            9,811                 
                  AVG # RECDS/JOB:        2.00                 
                  FREE SPACE-NEW JBS:    4,905                 

The 'AVG # RECDS/JOB: 2' means that, on average, two records on the History file are required to hold the information for one job.   Since the History file can hold a maximum of 100,000 records (DEFINED RECDS), it can hold approximately a maximum of 50,000 jobs. 'USED RECDS:' is 84,051, which means that there are approximately 42,025 jobs on the AJF file. In percentage terms, approximately 84% of the History file is used to hold jobs. Another six percent (6,138/100,000) of the History is used to hold index records. Therefore, a total of approximately 90% of the History is used for both jobs and indexes.

FREE SPACE-NEW JBS is calculated by dividing 9,811 (FREE RECDS) by 2.00. The result is 4,905. This means that theoretically 4,905 jobs can be added to the History file.   When jobs are copied from the AJF to the History file, index records are also created. Since approximately six percent (6,138/100,000) of the file is used to hold index records, this means that six percent must be subtracted from the 4,905 jobs that can be added to the History. This means that approximately 4,611 jobs can be added to the History file.

Sample report using the VERIFY FILE LOG parameter

Copy
=======================          IOA LOG FILE          =======================   
              DATA SET NAME:  BMCC.IOA6AC1.LOG
              DDNAME:         DALOG
   
                  GENERAL DATA
                     VOLUME SERIAL:        CACVD1
                     DEVICE TYPE:            3390
                     ORGANIZATION:             PS
                     RECORD FORMAT:             F
                     RECORD LENGTH:         6,200
                     BLOCK SIZE:            6,200
   
                  CURRENT ALLOCATION
                     ALLOCATED RECDS:      19,360

'ALLOCATED RECDS' is the number of records that were allocated for the Log file. For more information on IOA Log File Space Calculation, see the INCONTROL for z/OS Installation Guide.

Activating the IOAVERFY utility

A sample job can be found in the IOAVERFY member in the IOA JCL library.

IOAVERFY may also be activated by specifying any of its commands in the PARM field of the JCL EXEC statement. In that case, only a single command may be specified and the utility's SYSIN file is ignored. IOAVERFY may also be invoked from another program by passing it a command that conforms to the format of a PARM passed via the JCL EXEC statement. For example

Copy
          CALL CTMVRF10,(PARM)          ....
          DS     0H
PARM      DC     AL2(PARMLEN) 
PARMTXT   DC     C'DIAGNOSE AJF FORMAT'
PARMLEN   EQU   *-PARMTXT                    

The VERIFY ENQ function verifies the locking of IOA and Control-M files from a multi-systems environment.

To verify the locking (ENQ) mechanism

  1. Submit the IOAVERFY job in all systems that share the same IOA and Control-M files. Ensure that the job names of the jobs are all different since they must all run concurrently.

  2. Wait for the following question, prompting whether to start the test:

    VRFJ43I VERIFY ENQ: START CONTROL-M ENQ TEST? L(IST), Q(UIT)

    This question is issued by the jobs for each of the systems. You must wait for this message to be issued in all the LPARS participating in the test.

  3. Once the above message is issued in all the LPARS participating in the test, reply L (List LPARs) to each one, to determine whether the utility is able to detect all the other systems on which IOAVERFY ENQ test jobs were submitted. When an LPAR is missing from the list, the operator must check that the job is actually running during the test. When the LPAR list received in response indicates that all the requested LPARs are participating, reply Q to terminate (but the Q reply must only be used after the list was successfully produced in all the LPARS participating in the test).

  4. Verify that the list produced from each and every system has entries for all the others systems. A system that is not in the list, and the job with IOAVERFY was running on it, has a problem with the ENQ related definition.

IOAVERFY Return Codes

Table 84 IOAVERFY Return Codes

Code

Description

0

Operation performed successfully.

For DIAGNOSE AJF FORMAT requests – All AJF fields have successfully passed validation checking.

4

Warning message.

8 and above

Severe error found.

For DIAGNOSE AJF FORMAT requests – The utility has detected invalid AJF field(s) which failed validation processing. See the DAPRINT file for accompanying error messages. The CTMBLT utility is invoked to perform the actual validation, and any error messages are those produced by CTMBLT.

Trace Facility for IOAVERFY

If you encounter errors when running the IOAVERFY utility, you may be requested to run the utility with the TRACE optional parameter.

This parameter activates the trace facility of the IOAVERFY utility. If TRACE is specified, information about internal data areas is printed when the utility is run.

The TRACE parameter is specified in the EXEC statement of the utility in the following format:

Copy
//VERIFY EXEC IOAVERFY,TRACE=level

where level is the trace level to be activated. Valid value: 121.

This parameter is used only if requested by your BMC Customer Support.