View previous topic :: View next topic |
Author |
Message |
mdluk1 Beginner
Joined: 16 Jul 2005 Posts: 2 Topics: 1
|
Posted: Sat Jul 16, 2005 8:00 am Post subject: Question about SDSF |
|
|
Not sure if this is the proper forum for this but I will try anyway.
Our company is forcing us to switch from using SYSVIEW to SDSF and most of us hate that. I haven't been able to find a simple way of looking at a jobs output to see the steps that ran and their cond codes. On SYSVIEW a simple SS does the trick.
On SDSF, a ? will show the steps but not how or if they executed. Any help???
Thanks,
Mike |
|
Back to top |
|
|
Bill Dennis Advanced
Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Mon Jul 18, 2005 9:01 am Post subject: |
|
|
How about this:
1) select the output in SDSF in "edit mode" using "SE" action characters
2) use edit macro to display only "COND CODE" lines
Here's a macro. Store in in your SYSPROC concatenation.
Code: | ISREDIT MACRO
/* SDSF EDIT MACRO TO SEE STEPS AND COND CODE */
/* MIMIC SS COMMAND IN SYSVIEW */
CONTROL NOMSG
ISREDIT EXCLUDE ALL
ISREDIT FIND 'COND CODE' ALL
ISREDIT DELETE ALL EXCLUDED
DONE: -
EXIT CODE(0) |
_________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
|
mdluk1 Beginner
Joined: 16 Jul 2005 Posts: 2 Topics: 1
|
Posted: Mon Jul 18, 2005 10:45 am Post subject: |
|
|
Thanks, those commands work by just selecting the file. |
|
Back to top |
|
|
|
|