View previous topic :: View next topic |
Author |
Message |
infoman123 Beginner
Joined: 02 Nov 2004 Posts: 57 Topics: 20
|
Posted: Mon Nov 22, 2004 6:30 am Post subject: SUPERCE utility |
|
|
Hello,
I am creating a utility to display the difference in the members of 2 pds.My req is like this.
I will give 3PDS (pds1 pds2 pds3) as input. I need to check all the members of pds1 in pds2 and pds3 and list only the members having difference.
I dont know how to call this "SuperCE Utility " =3.13 utility from my rexx. Otherwsie i hav to do in other method(which i found very difficult) to do this.To create a batch job of 3.13 based on the input and perform the compare.The report produced is collected in a dataset and format the report accordingly.
I know that first method is simple but i dont know how to achieve it.Can anyone help me to acheive this.
Regards
Infoman123 |
|
Back to top |
|
|
Phantom Data Mgmt Moderator
Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
|
Posted: Mon Nov 22, 2004 6:50 am Post subject: |
|
|
infoman123,
Use rexx alloc function to allocate the input dsn and out dsn, sysout etc...and then issue a CALL to ISRSUPC with the required PARMS if any.
Thanks,
Phantom |
|
Back to top |
|
|
infoman123 Beginner
Joined: 02 Nov 2004 Posts: 57 Topics: 20
|
Posted: Mon Nov 22, 2004 10:35 am Post subject: |
|
|
phantom..thanx..
i will try it.Could u plzz tell me,where can i find this call program ISRUPC.
is there any special ddnames for this i/p dsn out dsn etc. |
|
Back to top |
|
|
naveen Beginner
Joined: 03 Dec 2002 Posts: 90 Topics: 31
|
Posted: Tue Nov 23, 2004 4:18 am Post subject: ISRSUPC |
|
|
Code: |
//SUPERC EXEC PGM=ISRSUPC, *
// PARM=(DELTAL,LINECMP,
// '',
// '')
//NEWDD DD DSN=FIRST DATA SET TO BE COMPARED (MEMBER),
// DISP=SHR
//OLDDD DD DSN=SECOND DATA SET TO BE COMPARED (MEMBER),
// DISP=SHR
//OUTDD DD DSN=COMPARISON RESULT DATASET,
// DISP=(NEW,CATLG),UNIT=SYSDA,
// SPACE=(X,(AA,BB),RLSE),
// DCB=(BLKSIZE=0)
|
|
|
Back to top |
|
|
infoman123 Beginner
Joined: 02 Nov 2004 Posts: 57 Topics: 20
|
Posted: Wed Nov 24, 2004 2:58 am Post subject: |
|
|
Thanx all ,it worked and i am getting the expected result.
thanx once again |
|
Back to top |
|
|
|
|