View previous topic :: View next topic |
Author |
Message |
rasprasads Beginner
Joined: 10 Dec 2002 Posts: 59 Topics: 20 Location: Chennai
|
Posted: Fri Jul 23, 2004 3:41 am Post subject: Endevor versions compare |
|
|
An element - Jcl is existing in endevor prod as version 1.05.
I have signed-out it, changed and added the JCL in Endevor - DEV 1 as version 1.06.
Now can i compare the Version 1.04 in prod and Version 1.06 in DEV-1.
---------
Prasad _________________ Rasprasad S |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Fri Jul 23, 2004 5:34 am Post subject: |
|
|
Rasprasad,
Endevor has a compare utility called BSTPCOMP which can be used to compare the sources.you can find more about it in Endevor Utilities Guide.try this jcl
Code: |
//COMPARE EXEC PGM=BSTPCOMP,REGION=2000K
//STEPLIB DD DSN=iprfx.iqual.CONLIB,
// DISP=SHR
//NDVRIN1 DD DSN=OLD.FILE.LIBRARY(MEMBER),
// DISP=SHR
//NDVRIN2 DD DSN=NEW.FILE.LIBRARY(MEMBER),
// DISP=SHR
//NDVRLST DD SYSOUT=* **SYNTAX LISTING + COMPARE OUTPUT**
//*SORTWORK FILES USED ONLY IF FILES TOO LARGE FOR IN-MEMORY COMPARE
//SORTWK01 DD UNIT=DASD,SPACE=(TRK,(1,30)
//SORTWK02 DD UNIT=DASD,SPACE=(TRK,(1,30)
//NDVRIPT DD *
COMPARE COLUMN=1 TO 80 OUTPUT=HISTORY.
//*OUTPUT OF COMPARE: NOTE: RECORD LENGTH=#COMPARE COLUMNS + 16
//NDVRPCH DD DSN=OUTPUT.FILE.NAME,
// DISP=(,CATLG),
// UNIT=SYSDA,
// SPACE=(TRK,(5,5),RLSE),
// DCB=(LRECL=88,BLKSIZE=6072,RECFM=FB)
//*
|
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
rasprasads Beginner
Joined: 10 Dec 2002 Posts: 59 Topics: 20 Location: Chennai
|
Posted: Fri Jul 23, 2004 6:09 am Post subject: |
|
|
Kolusu - as per your suggestion i need to retrieve the elemenst to a library and then compare. Since the number of Jcls are huge - i am checking if i can go in for some report kind of thing that endevor can produce.
For example endevor can give the report of changes in a element with the prior version(Only prior version). Like this do we have anything for comparing versions other than new and its prior version ? _________________ Rasprasad S |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Fri Jul 23, 2004 9:37 am Post subject: |
|
|
rasprasads,
BSTPCOMP is an utility which can be used to compare the source libraries of endevor. so you do not have the copy the sources into a seperate library.
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
programmer1 Beginner
Joined: 18 Feb 2004 Posts: 138 Topics: 14
|
Posted: Sat Jul 24, 2004 7:21 am Post subject: |
|
|
Kolusu,
Does Endevor provides a Source Library for Cobol Programs ? _________________ Regards,
Programmer |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
|
Back to top |
|
|
programmer1 Beginner
Joined: 18 Feb 2004 Posts: 138 Topics: 14
|
Posted: Mon Jul 26, 2004 1:02 pm Post subject: |
|
|
Kolusu,
I am sorry to confuse you. I did not mean, what you understood !!
My question was, whether Endevor stores all the programs in some PDS ?
And can we view the source of these programs in that PDS as we can do in Changeman ?
I mean, suppose I need to search for some "String" in my complete list of programs lying in Endevor, is there a way to do that ? _________________ Regards,
Programmer |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Tue Jul 27, 2004 8:31 am Post subject: |
|
|
Programmer1,
Endevor source libraries are regular PDS's . So you can use the option 3.14 or 3.15 to search a string in the source library. You can even use file-aid to search.
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
|
|