View previous topic :: View next topic |
Author |
Message |
misi Beginner
Joined: 14 Apr 2004 Posts: 13 Topics: 10
|
Posted: Mon Jun 21, 2004 4:38 am Post subject: compile date of pgm |
|
|
how can i find out when the pgm is compiled? i am having problem when my team member compiled the same pgm |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Mon Jun 21, 2004 8:56 am Post subject: |
|
|
If you have FILEAID installed and use the CSECT display (function A) in the library option (option x.3.1 where x is you FILEAID ISPF option), it will display compile and linkedit dates/times for a load module. |
|
Back to top |
|
 |
Cogito-Ergo-Sum Advanced
Joined: 15 Dec 2002 Posts: 637 Topics: 43 Location: Bengaluru, INDIA
|
Posted: Mon Jun 21, 2004 1:37 pm Post subject: |
|
|
You may also like to use this:
Code: |
//STEP1 EXEC PGM=AMBLIST
//SYSIN DD *
LISTIDR MEMBER=load module name
/*
//SYSLIB DD DSN=load module PDS,
// DISP=SHR
//SYSPRINT DD SYSOUT=*
|
Somewhere in the middle of the listing, you will get a date in Julian format showing when it was compiled. _________________ ALL opinions are welcome.
Debugging tip:
When you have eliminated all which is impossible, then whatever remains, however improbable, must be the truth.
-- Sherlock Holmes. |
|
Back to top |
|
 |
|
|