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

Continuation parameter for compiler options


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
krisprems

Active Member


Joined: 27 Nov 2006
Posts: 649
Location: India

PostPosted: Fri May 14, 2010 4:51 am
Reply with quote

Hi, Its long time since I coded a JCL , so looking for help in building a compilation JCL -
Code:

----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
//COBOL    EXEC  PGM=IGYCRCTL,                                         
// PARM='FLAG(I,E),NOOFFSET,TERM,NOADV,COMPILE,NODECK,NODYNAM,         
//         NOTEST,TRUNC(STD),BUFSIZE(4096),NOFASTSRT'                 


As shown in the above code, i am trying to mention couple of compilation parameters but getting JCLERR because of the wrong continuation - syntax error

Can some one please help in fixing this!
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Fri May 14, 2010 5:23 am
Reply with quote

Hi Krisprems,

So where ya been - welcome back icon_smile.gif

I'm not able to logon just now, but you might try something like this (from the JCL manual linked above):

Code:
     //RUN4  EXEC PGM=IFOX00,PARM=(NOOBJECT,'LINECNT=50', 'TRUNC(BIN)',
     //   DECK)
Back to top
View user's profile Send private message
krisprems

Active Member


Joined: 27 Nov 2006
Posts: 649
Location: India

PostPosted: Fri May 14, 2010 6:04 am
Reply with quote

Thanks for the Welcome ! icon_smile.gif

Its long time since I posted here! Hope i will make a quick come back ...

Your solution helped me solve the issue.
Below is the changed code
Code:

//COBOL    EXEC  PGM=IGYCRCTL,                                         
// PARM=(FLAG(I,E),NOOFFSET,TERM,NOADV,COMPILE,NODECK,NODYNAM,         
//           NOTEST,'TRUNC(STD)','BUFSIZE(4096)',NOFASTSRT)             
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Fri May 14, 2010 6:58 am
Reply with quote

Good to hear it is working - thanks for the follow-up icon_smile.gif

Hopefully, we'll see more of you again,

d
Back to top
View user's profile Send private message
Marso

REXX Moderator


Joined: 13 Mar 2006
Posts: 1353
Location: Israel

PostPosted: Sat May 15, 2010 2:54 am
Reply with quote

I think this would have been enough:
Code:
//COBOL    EXEC  PGM=IGYCRCTL,                                         
// PARM=(FLAG(I,E),NOOFFSET,TERM,NOADV,COMPILE,NODECK,NODYNAM,         
//           NOTEST,TRUNC(STD),BUFSIZE(4096),NOFASTSRT)

Check what's written at the bottom of this page
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts How I Found a Bug in a FORTRAN Compiler All Other Mainframe Topics 4
No new posts Using the Jobname parameter in a Qual... ABENDS & Debugging 1
No new posts Demand with DEADLINE TIME parameter CA Products 4
No new posts Option DYNALLOC second parameter. DFSORT/ICETOOL 11
No new posts Writing the output file name from a p... JCL & VSAM 7
Search our Forums:

Back to Top