提交作业中出现TSO错误

csb*_*sbl 0 mainframe submit jcl tso

我现在正在学习大型机编程。我在Dezhi得到了一个tso ID,并且正在使用PASSPORT终端仿真器。我的用户是CATIA81

我上传了一些工作和一个cobol程序进行测试。我试图通过ISPF COMMAND SHELL提交工作:

 SUBMIT CATIA81.KSDCRTJ1.JCL 
Run Code Online (Sandbox Code Playgroud)

我得到以下错误:

 SUBMIT cancelled, JOBNAME must start with CATIA81
Run Code Online (Sandbox Code Playgroud)

这就是我所拥有的

    //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:   helpdesk@simotime.com                 *
    //* *******************************************************************
    //* 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
     /*
    //
Run Code Online (Sandbox Code Playgroud)

原始的JOBNAME是KSDDELJ1,我将其更改为CATIA81KDEL1。我的错误是什么?

Deu*_*ian 5

作业名称不能超过8个字符,请将作业名称从CATIA81KDEL1更改为CATIA81K