Tandem Logon Manager for IBM Systems (ILOGMGR) Manual

Tandem Logon Manager for IBM Systems (ILOGMGR) Manual127335 2-1
2
Installing the ILOGMGR
The ILOGMGR is distributed as a single file on the SNAX/APN release subvolume.
This file must be moved to the IBM system and link-edited into a link library. The file is
an entry-sequenced file of 80 byte records, with a block length of 1600 bytes.
Copying ILOGMGR File From DSV to Tape
The ILOGMGR file may be moved to the IBM system through methods such as
Exchange/SNA or tape. The following example shows a File Utility Program (FUP)
command to copy the object file to tape:
FUP COPY $DV.DSV.ILOGMGR,$TAPE1,RECOUT 80,BLOCKOUT 1600
Link-Editing ILOGMGR File to a Load Module Library
After the ILOGMGR file is on tape, it may be placed in a separate sequential data set,
made a member of a partitioned data set, or input directly to the linkage editor. The
following example shows link-editing the ILOGMGR file (assuming the file has already
been placed on tape):
//ILMLINK JOB
//S1 EXEC PGM=HEWLH096,REGION=560K,
// PARM='LIST,XREF,LET,SIZE=(356K,64K)'
//SYSPRINT DD SYSOUT=A
//SYSUT1 DD UNIT=SYSDA,SPACE=(CYL,(5,1)),DISP=(,DELETE)
//SYSLMOD DD DSN=USER.LINKLIB,DISP=SHR
//SYSLIN DD DSN=ILOGMGR,UNIT=TAPE,LABEL=(,NL),DISP=OLD,
// VOL=SER=ILMTAP,
// DCB=(RECFM=FB,LRECL=80,BLKSIZE=1600)
// DD DDNAME=SYSIN
//SYSIN DD *
NAME ILOGMGR(R)
/*
//
For more information about the linkage editor, see the MVS/DFP Linkage Editor and
Loader Manual.
Using an Optional JCL Procedure
The following example shows a job control language (JCL) procedure that can run
ILOGMGR. For more information about JCL, refer to the IBM MVS/ESA JCL User’s
Guide.
Add the JCL procedure as a member of the system-procedure library. In this example,
the member name is added with the name “ILOGMGR.
//STEP0 PROC PNM=ILOGMGR,
// SLIB='USER.LINKLIB',
// SOUT=A,
// CLIB='USER.PARMLIB',