我正在學習大型機編程。我得到了一個與Dezhi tso id和我正在使用PASSPORT終端仿真器。我的用戶是CATIA81提交作業中TSO錯誤
我上傳了一些作業和cobol程序來測試。我試圖通過ISPF命令shell提交作業:
SUBMIT CATIA81.KSDCRTJ1.JCL
,我得到了以下錯誤:
SUBMIT cancelled, JOBNAME must start with CATIA81
這是我
//CATIA81KDEL1 JOB CSBL81,CLASS=1,MSGCLASS=0,NOTIFY=CSIP1
//* *******************************************************************
//* This program is provided by: SimoTime Enterprises *
//* (C) Copyright 1987-2012 All Rights Reserved *
//* Web Site URL: http://www.simotime.com *
//* e-mail: [email protected] *
//* *******************************************************************
//* Subject: JCL to delete a VSAM Data Set using the IDCAMS Utility *
//* Author: SimoTime Enterprises *
//* Date: January 1, 1998 *
//*-------------------------------------------------------------------*
//* The following example is more than what is usually required to *
//* delete a VSAM Data Set. However, the purpose is to illustrate the *
//* functions of the IDCAMS utility. *
//*********************************************************************
//*
// EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
DELETE CATIA81.DATA.VKSD0080 -
FILE (VKSD0080) -
PURGE -
ERASE -
CLUSTER
SET MAXCC = 0
/*
//
原單作業名是KSDDELJ1 ,我修改爲CATIA81KDEL1。 什麼是(我的)錯誤?
你不需要提你的問題:) – 2012-07-16 04:38:35
你經常做的用戶ID,作爲你的用戶標識通常是您的TSO前綴,當你不把它們放在引號中時,ISPF將它添加到數據集名稱中。這在RACF違規消息中也很重要。 – 2016-05-18 11:26:15