IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Compile jcl error


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
santosh100678

New User


Joined: 21 Sep 2009
Posts: 55
Location: Kolkatta

PostPosted: Mon Mar 29, 2010 4:23 pm
Reply with quote

Code:
****** ***************************** Top of Data **************************************
000001 //MTPLD01a JOB 'IBMMFS','MAC',CLASS=A,MSGCLASS=X,NOTIFY=&SYSUID
000002 //STEP1 EXEC IGYWCL,
000003 // PARM.COBOL='LIB,APOST,XREF,MAP,OFFSET'
000004 //COBOL.SYSIN DD DISP=SHR,DSN=IBMMFS.MACC.COBOL(PGM001)
000005 //LKED.SYSLMOD DD DISP=SHR,DSN=IBMMFS.MACC.LOAD(PGM001)
000006 //SYSPRINT DD SYSOUT=*
000007 //

I use that jcl face below error

Code:
1.//STEP1 EXEC IGYWCL,                       
   LAL6020E EXPECTED CONTINUATION NOT RECEIVED
2. //PARM.COBOL="LIB,APOST,XREF,MAP,OFFSET"    <= COMPILER OPTIONS 
  LAL6006S VERB "<= CO" IS UNKNOWN   
3.XXSTEPLIB  DD  DSNAME=&LNGPRFX..SIGYCOMP,                             
    SUBST JCL - DSNAME=SYS1.R320.SIGYCOMP,                               
  XX             DISP=SHR                                               
    CAY6079E DATA SET "SYS1.R320.SIGYCOMP" SPECIFIED AS OLD OR SHR, BUT   
            CANNOT BE FOUND   
  //SYSPRINT DD SYSOUT=*                                                 
   LAL6033W ATTEMPTED OVERRIDE OF "SYSPRINT" IN STATEMENT 37 FAILED -     
         STATEMENTS OUT OF ORDER                                       
                                                                       
  XXSYSLIN   DD  DSNAME=&&LOADSET,DISP=(OLD,DELETE)                       
   LAL6194I UTILITY PROGRAM SIMULATION WILL NOT OCCUR BECAUSE DSNAME       
         "&LOADSET" DOES NOT EXIST AT THIS TIME                         
                                                                       
  XX         DD  DDNAME=SYSIN                                             
   LALAY6071W DDNAME "SYSIN" NOT FOUND IN STEP AFTER THIS STATEMENT

please help regarding this
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10872
Location: italy

PostPosted: Mon Mar 29, 2010 4:37 pm
Reply with quote

search the manuals ( available in Your organization ) for the meaning of the messages
Code:
LAL6006S
LAL6006S
CAY6079E
LAL6194I
LAY6071W


they are not IBM messages, so the chance of anybody explaining them is a bit scarce

as an alternative speak to Your support
Back to top
View user's profile Send private message
santosh100678

New User


Joined: 21 Sep 2009
Posts: 55
Location: Kolkatta

PostPosted: Mon Mar 29, 2010 4:54 pm
Reply with quote

only reson i found that below lib :
1.VERB string IS UNKNOWN( VERB "<= CO" IS UNKNOWN)
2.SYS1.R320.SIGYCOMP is not in sytem
3.sequence is not correct SYSPRINT DD SYSOUT=*
4.&&LOADSET is not pick ibrary is not specified in sytem
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Mon Mar 29, 2010 5:05 pm
Reply with quote

The JCL you list does not match the error listing. For example, there is a space before PARM.COBOL in the JCL that is not present in the error listing.

The SYSPRINT statement needs to be qualified -- is it COBOL.SYSPRINT or is it LKED.SYSPRINT?

The exact name for SIGYCOMP is site dependent -- you must contact your site support group for assistance; we cannot tell you what this data set is called at your site. Furthermore, most sites have standard compile JCL that is used so why are you creating your own?
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts Compile rexx code with jcl CLIST & REXX 6
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
No new posts C Compile time time stamps Java & MQSeries 10
Search our Forums:

Back to Top