XMEOUT Phase 4: Set up Automatic Initialization - ironstream_for_micro_focus_omi - 7.2

Ironstream for Micro Focus® OMi for IBM Z® Installation

Product type
Software
Portfolio
Integrate
Product family
Ironstream
Product
Ironstream > Ironstream for Micro Focus® OMi
Version
7.2
Language
English
Product name
Ironstream for Micro Focus OMi for IBM Z
Title
Ironstream for Micro Focus® OMi for IBM Z® Installation
Copyright
2021
First publish date
2007
Last updated
2025-01-16
Published on
2025-01-16T06:22:08.986000

[Optional.] Use the following steps to add an entry to the CICS PLTPI table to activate the XMEOUT exit each time CICS is started (eliminating the need for entering the above CECI ENABLE command).

  1. Create a PLTPI program.

Run the CICS DFHEITAL procedure with assembler code to start the EVXMEOUT exit. The assembler input for the DFHEITAL job is in hlq.ASM(EVPLTPI). A sample DFHEITAL job is available in hlq.SAMP(DFHEITAL).

  1. Update the PLTPI table.

Add the name of the load module created in Step 1 to the PLTPI table after the DFHDELIM entry. By default, the name is EVPLTPI. A sample PLTPI table follows:

  • LIST OF PROGRAMS TO BE EXECUTED SEQUENTIALLY DURING SYSTEM

  • INITIALIZATION.

DFHPLT TYPE=INITIAL,SUFFIX=I1 DFHPLT TYPE=ENTRY,PROGRAM=TRAQA DFHPLT TYPE=ENTRY,PROGRAM=TRAQB

DFHPLT TYPE=ENTRY,PROGRAM=DFHDELIM

DFHPLT TYPE=ENTRY,PROGRAM=TRASA DFHPLT TYPE=ENTRY,PROGRAM=TRASB DFHPLT TYPE=ENTRY,PROGRAM=EVPLTPI DFHPLT TYPE=FINAL

END

Use the DFHAUPLE job to assembler the PLTPI table. A sample DFHAUPLE job is available in hlq.SAMP(DFHAUPLE).

  1. Identify the PLTPI to CICS.

Add a PLTPI entry to the CICS startup parameters if one is not already specified.

  1. Add a definition for the new PLTPI module.

Enter the following command from a CICS session to define the new PLTPI module:

CEDA DEFINE PROGRAM(EVPLTPI) GROUP(EVOGRP) LANGUAGE(ASSEMBLER)