IKJ56893I DATA SET SMPETEMP.CCLXD50.F1 NOT ALLOCATED+ and USER NOT AUTHORIZED
search cancel

IKJ56893I DATA SET SMPETEMP.CCLXD50.F1 NOT ALLOCATED+ and USER NOT AUTHORIZED

book

Article ID: 134537

calendar_today

Updated On:

Products

OPS/MVS Event Management & Automation

Issue/Introduction

When running the job CLX20RCB to receive CA OPS/MVS 13.5 errors occur because temporary datasets with prefix SMPETEMP are being allocated.

Some of the error messages:

 

ICH408I USER(xxxxxx) GROUP(yyyy    ) 

   SMPETEMP.CCLXD50.F1 CL(DATASET ) VOL(vvvvvv)

   DEFINE - RESOURCE NOT PROTECTED

 IKJ56893I DATA SET SMPETEMP.CCLXD50.F1 NOT ALLOCATED+

 IGD17012I USER NOT AUTHORIZED TO DEFINE DATA SET

 SMPETEMP.CCLXD50.F1



Environment

OPS/MVS, All Releases

Cause

The prefeix SMPETEMP was defined with an incorrect value when the job CLX10CSI was executed. 
         

Resolution

In step INITCSI in this job, the SMPETEMP must be replaced with a valid user prefix:   

 ADD OPTIONS(OPTGBL)

     DSSPACE(200,100,500)

     DSPREFIX(SMPETEMP)   <--- 

     LKED(IEWL)

     ASM(ASMA90)

     RETRYDDN(ALL)

     RECZGRP(ALLZONES) .      

 

 

Update the value of DSPREFIX directly in the SMP/E panels, or run a batch job as shown below to set the desired name:

//INITCSI EXEC PGM=GIMSMP,REGION=0M,

// PARM='CSI=prefix.CSI,DATE=U' 

//SMPOUT DD SYSOUT=*

//SMPRPT DD SYSOUT=*

//SMPLOG DD DISP=SHR,DSN=prefix.SMPLOG

//SMPLOGA DD DISP=SHR,DSN=prefix.SMPLOGA

//SMPPTS DD DISP=SHR,DSN=prefix.SMPPTS

//SMPPTS1 DD DISP=SHR,DSN=prefix.SMPPTS1

//SMPCNTL DD *

 SET BOUNDARY(GLOBAL).

 UCLIN.

 REP OPTIONS(OPTGBL)

     DSSPACE(200,100,500)

     DSPREFIX(TEMPPREF)    <==== customize

     LKED(IEWL)

     ASM(ASMA90)

     RETRYDDN(ALL)

     RECZGRP(ALLZONES) .

 ENDUCL.