Miklos Szigetvari wrote:
>Try to find all abends for a specific time in the system .
>Would be something with the mysterious CEA, but as I see,  it is still a 
>secret.
>Another option would be to notice every abend , dump message from the SYSLOG.

>Maybe someone has a better idea.

Two methods:

Use DFSORT on SYSLOG and search for ABEND. 

//ST1 EXEC PGM=SORT                           
//SORTIN   DD DISP=SHR,DSN=<pirate copy of SYSLOG!> 
//SORTOUT  DD SYSOUT=*                        
//SYSPRINT DD SYSOUT=*                        
//SYSOUT   DD SYSOUT=*                        
//SYSIN    DD *                               
 SORT FIELDS=(COPY)                           
 INCLUDE COND=(1,<max LRECL of your copy>,SS,EQ,C'ABEND')         

Ugly, but you can try searching for those IEF450I instead, for example.

Or collect SMF record 30, subtype 5 and look for abnormal jobend. Some 
programming skills are needed.

Groete / Greetings
Elardus Engelbrecht

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to