Search found 7 matches

by Jlopez
Tue May 15, 2012 11:31 pm
Forum: JCL
Topic: GDG index and model
Replies: 4
Views: 7534

What is the purpose to create Model?
by Jlopez
Tue May 15, 2012 10:55 pm
Forum: JCL
Topic: GDG index and model
Replies: 4
Views: 7534

GDG index and model

Hello, I have been taught at my work to create GDG as below: //IDCAMS EXEC PGM=IDCAMS,REGION=512K //SYSPRINT DD SYSOUT=* //SYSIN DD * DEFINE GDG( - NAME(JLOPEZ.TAP.TODISP)- LIMIT(7) NOEMPTY SCRATCH) /* // I found online tutorial it says: Before using GDG , We need to create G...
by Jlopez
Thu Apr 19, 2012 7:53 pm
Forum: JCL
Topic: Override
Replies: 5
Views: 9074

Nic,

Thanks, its work.

What is the function of SYSIN DD DUMMY?
What is difference between SYSIN DD * compare to SYSIN DD DUMMY ?


Previously I did not use SYSIN DD * in proc.
But I noticed you used SYSIN DD DUMMY in proc and its work.

Thank You
by Jlopez
Thu Apr 19, 2012 2:00 am
Forum: JCL
Topic: Override
Replies: 5
Views: 9074

Override

Hello, Almost similar problem I had asked you earlier. http://www.mainframegurukul.com/ibmmainframeforums/viewtopic.php?t=6433 But this is little different. I added one more step in the logic but its does not work. //EXTPROC PROC //STEP1 EXEC PGM=IEFBR14 //SQADB512 DD DSN=&DSNAME,DISP=(NEW,CATLG,DEL...
by Jlopez
Wed Apr 18, 2012 11:01 pm
Forum: JCL
Topic: How do you override a specific SYSIN in PROC from a JCL?
Replies: 6
Views: 9832

Nic I am Sorry. I did not undestand earlier. Anyway problem has fixed, thanks for advice. Here I used teh code: //EXTPROC PROC //STEP1 EXEC PGM=IEFBR14 //SQADB512 DD DSN=&DSNAME,DISP=(NEW,CATLG,DELETE), // SPACE=(TRK,(5,3,1)),UNIT=SYSDA, // DCB=(RECFM=FB,LRECL=80,BLKSIZE=800,DSORG=PO) //STEP2 EXEC P...
by Jlopez
Wed Apr 18, 2012 7:31 pm
Forum: JCL
Topic: How do you override a specific SYSIN in PROC from a JCL?
Replies: 6
Views: 9832

Override

Now I have changed following: I placed PEND at the end of proc. I moved "//STEP2.SYSIN DD * " as adviced. (see below) //EXTPROC PROC //STEP1 EXEC PGM=IEFBR14 //SQADB512 DD DSN=&DSNAME,DISP=(NEW,CATLG,DELETE), // SPACE=(TRK,(5,3,1)),UNIT=SYSDA, // DCB=(RECFM=FB,LRECL=80,BLKSIZE=800,DSORG=PO) //STEP2 ...
by Jlopez
Wed Apr 18, 2012 2:55 am
Forum: JCL
Topic: How do you override a specific SYSIN in PROC from a JCL?
Replies: 6
Views: 9832

How do you override a specific SYSIN in PROC from a JCL?

How do you override a specific SYSIN in PROC from a JCL? I am writing following proc but it did not work out //EXTPROC PROC //STEP1 EXEC PGM=IEFBR14 //SQADB512 DD DSN=&DSNAME,DISP=(NEW,CATLG,DELETE), // SPACE=(TRK,(5,3,1)),UNIT=SYSDA, // DCB=(RECFM=FB,LRECL=80,BLKSIZE=800,DSORG=PO) // //STEP2 EXEC P...