//TSOZA50A JOB 3ES10G10000012,'TSOZA48',MSGCLASS=X,MSGLEVEL=(1,1),
// NOTIFY=TSOZA50,CLASS=A,REGION=2M
*********************************************************************************************
//* JOB: SUBMITTED FROM TSOZA50.ES10.CNTL(LAB5#32) ***
//* DOC: RUN A CATALOG PROCEDURE IN D80WW.ES10V15.PROC(COMP) ***
//******************************************************************************************
//COMP PROC INDS=FORGOTTEN,BACK=FORGOTTEN
//********************************************************************
//* DOC: COMPRESS DATA SETS SPECIFIED WITH VARIABLES. ***
//********************************************************************
//**********************************************************
//******** MAKE BACKUP
//**********************************************************
//S1 EXEC PGM=IEBCOPY
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DISP=SHR,DSN=&INDS.
//SYSUT2 DD DISP=(,CATLG),DSN=&BACK.,
// LIKE=&INDS
//SYSIN DD DUMMY
//IFOK1 IF (S1.RC=0) THEN
//**********************************************************
//******** COMPRESS DATA SET
//**********************************************************
//S2 EXEC PGM=IEBCOPY
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DISP=SHR,DSN=&INDS.
//SYSUT2 DD DISP=OLD,DSN=&INDS.
//SYSIN DD DUMMY
//IFOKEND1 ENDIF
//IFOK2 IF (S2,RC=0) THEN
//**********************************************************
//******** COMPRESS SUCCESSFUL, DELETE BACKUP
//**********************************************************
//S3 EXEC PGM=IEFBR14
//DD1 DD DISP=(OLD,DELETE),DSN=&BACK.
//IFOKEND2 ENDIF
I RECEIVED THE FOLLOWING JCL ERROR : IEFC005I PROC STATEMENT WITHOUT MATCHING PEND STATEMENT , any idea why this appears?
Running a cataloged procedure
-
- Posts: 6
- Joined: Wed Nov 11, 2020 4:14 am
- Skillset: i can code some JCL data set using different utilities
- Referer: from internet
-
- Global moderator
- Posts: 3006
- Joined: Fri Apr 18, 2008 11:25 pm
- Skillset: tso,rexx,assembler,pl/i,storage,mvs,os/390,z/os,
- Referer: www.ibmmainframes.com
Re: Running a cataloged procedure
because what You are trying to run is NOT a cataloged procedure,
but an inline one, as per
but an inline one, as per
Code: Select all
//COMP PROC INDS=FORGOTTEN,BACK=FORGOTTEN
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
-
- Posts: 6
- Joined: Wed Nov 11, 2020 4:14 am
- Skillset: i can code some JCL data set using different utilities
- Referer: from internet
Re: Running a cataloged procedure
So what's the right syntax ?
-
- Global moderator
- Posts: 3025
- Joined: Sun Jul 04, 2010 12:13 am
- Skillset: JCL, PL/1, Rexx, Utilities and to a lesser extent (i.e. I have programmed using them) COBOL,DB2,IMS
- Referer: Google
- Location: Pushing up the daisies (almost)
Re: Running a cataloged procedure
the 'right syntax' is explained in the manual.
Also - you again failed to use the code tags to present your code despite repeated requests. Topic locked.
Another 'also' - have your previous topics been resolved - if 'yes' the post the resolution so that people with similar problems can resolve them themselves.
Also - you again failed to use the code tags to present your code despite repeated requests. Topic locked.
Another 'also' - have your previous topics been resolved - if 'yes' the post the resolution so that people with similar problems can resolve them themselves.
The problem I have is that people can explain things quickly but I can only comprehend slowly.
Regards
Nic
Regards
Nic
-
- Similar Topics
- Replies
- Views
- Last post
-
- 1
- 1763
-
by NicC
View the latest post
Sun Nov 22, 2020 2:09 am
-
- 2
- 8417
-
by prino
View the latest post
Sat Mar 13, 2021 4:47 am
-
-
Override DD-statements of an in-stream procedure
by aldencarr123 » Sun Nov 15, 2020 3:40 am » in JCL - 4
- 2584
-
by willy jensen
View the latest post
Mon Nov 16, 2020 1:53 pm
-
-
-
Getting 0F01C008 Error while running SMP/e Apply Check Job
by csakil » Tue Apr 06, 2021 10:58 pm » in System programming - 0
- 2843
-
by csakil
View the latest post
Tue Apr 06, 2021 10:58 pm
-
-
-
RC's when running a REXX exec under ISPSTART in Batch
by golemis » Thu Nov 03, 2022 5:19 pm » in TSO & ISPF - 5
- 3481
-
by golemis
View the latest post
Fri Nov 04, 2022 2:19 pm
-