SMPLOG not being written
search cancel

SMPLOG not being written

book

Article ID: 26242

calendar_today

Updated On:

Products

Endevor

Issue/Introduction

 SMPLOG data is not written to a file or JES sysout.

 

 

Environment

 All supported releases
Endevor 
SMP/E

Resolution

The current sample setup for SMP/E as provided has SMPLOGs allocated but dummied out in the JCL. For example // DD DUMMY, therefore the SMPLOG data gets deleted.  SMPLOG datasets can be utilized using one of 2 methods.  Identifying the dataset to SMP/E using DDDEF. See #2 below for adding DDDEFs. #1 Adding in the datasets.  

1.  By specifying the DD in the JCL itself. Change all the DD DUMMYs and adding the datasets see below.

Change from:

//SMPLOG DD DUMMY //SMPLOGA DD DUMMY

Change to:

//SMPLOG DD DSN= IPRFX.IQUAL..SMPLOG,DISP=SHR
//SMPLOGA DD DSN= IPRFX.IQUAL..SMPLOG,DISP=SHR

 

2.    Add the following UCLIN statements to your zone(s) Delete any DDcards which dummy out SMPLOG|A. Sample Adding DDDEF:

//SMPCNTL DD *
SET BDY(GLOBAL).
UCLIN.
ADD DDDEF (SMPLOG) DATASET (IPRFX.IQUAL..SMPLOG) SHR.
ADD DDDEF (SMPLOGA) DATASET (IPRFX.IQUAL..SMPLOGA) SHR.
ENDUCL.
/*