View previous topic :: View next topic |
Author |
Message |
Prosenjit2 Beginner
Joined: 02 Mar 2005 Posts: 13 Topics: 8 Location: India
|
Posted: Wed Mar 02, 2005 3:36 am Post subject: Compare JCL required |
|
|
I require a JCL that does the same work as SUPERCE in mainframe.I need to compare two Cobol programs kept in two different PDS i.e. PDS1 and PDS2 and find out the extra lines of the cobol program in present in PDS2.
Actual the program in PDS2 is an enhanced program of the same present in PDS1.Some lines have been retrofitted of the PDS1 program and the current program kept in PDS2.
So i need one JCL to compare them and find all the extra lines present in PDS2. |
|
Back to top |
|
 |
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Wed Mar 02, 2005 3:58 am Post subject: |
|
|
You can use ISPF to generate that JCL for you. Just run SuperC in batch. But for your purposes, you'd probably be better off using the editor's COMPARE command. |
|
Back to top |
|
 |
programmgr Beginner
Joined: 25 Feb 2005 Posts: 8 Topics: 0
|
Posted: Fri Mar 04, 2005 7:11 am Post subject: |
|
|
=3.13 .. |
|
Back to top |
|
 |
s_shivaraj Beginner

Joined: 21 Sep 2004 Posts: 140 Topics: 14 Location: Chennai, India
|
Posted: Fri Mar 04, 2005 7:34 am Post subject: |
|
|
Try this,
Quote: | //SUPERC EXEC PGM=ISRSUPC,
// PARM=(DELTAL,LINECMP,
// '',
// '')
//NEWDD DD DSN=new.dsn.name,
// DISP=SHR
//OLDDD DD DSN=old.dsn.name,
// DISP=SHR
//OUTDD DD SYSOUT=*
|
Hope it will be useful for you. _________________ Cheers
Sivaraj S
'Technical Skill is the Master of complexity, while Creativity is the Master of Simplicity' |
|
Back to top |
|
 |
|
|