View previous topic :: View next topic
|
Author |
Message |
Sergey Tal
New User
Joined: 21 Jul 2022 Posts: 8 Location: Israel
|
|
|
|
Hello all!
I'm looking for the way to get the list of all quiesced jobs for the next batch resume. I've drilled IBM docs but didn't find any appropriate commands to squeeze from SDSF DA huge panel stressed list of that jobs. I'd appreciate if you can help - may be there any other ways to get the list of jobs with status QUIESCE = YES ? |
|
Back to top |
|
|
Sergey Tal
New User
Joined: 21 Jul 2022 Posts: 8 Location: Israel
|
|
|
|
Just some additional info - I've made REXX parsing row-by-row list of jobs but sure it eats CPU. Do you know any "lightweight" way to get the list of quiesced jobs? Any MVS/WLM/RMF commands? |
|
Back to top |
|
|
Willy Jensen
Active Member
Joined: 01 Sep 2015 Posts: 734 Location: Denmark
|
|
|
|
Are they identifiable in SDSF display? If so you could use a filter in a REXX/SDSF API call. |
|
Back to top |
|
|
Sergey Tal
New User
Joined: 21 Jul 2022 Posts: 8 Location: Israel
|
|
|
|
Willy, yes, you're right.
Code: |
isffilter = "quiesce = quiesce"
Address SDSF "ISFEXEC DA"
|
and it works. I'm trying to avoid use of REXX That's why I'm looking for a simple way. Similar to console commands... |
|
Back to top |
|
|
|