I had already typed the solution,
but the ADSL connection suddenly dropped!
here it is again ...
there is a misleading glitch in the docs
in the isffilter paragraph it tells that a way of finding the column <names> is
from the interactive panel enter the command FILTER ?
and in the popup panel enter a / in the first line to get a list of the column <names>
there is a big difference unfortunately,
the interactive panels filter on the column TITLES
the SDSF REXX interface filters on the column names
You have two ways of finding out ...
read the manual here
http://publibz.boulder.ibm.com/cgi-bin/ ... 0605143940to find the names here
http://publibz.boulder.ibm.com/cgi-bin/ ... THIT#FIRST HIT
or write a simple snippet along the lines of
****** ***************************** Top of Data ******************************
000001 /*REXX - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
000002 /* */
000003 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
000004 Trace "O"
000005 Parse Source _sys _how _cmd .
000006 parse arg args
000007
000008 IsfRC = isfcalls("ON")
000009 if IsfRC ¬= 0 then do
000010 say "isfcalls RC" IsfRC
000011 exit
000012 end
000013
000014 isfprefix = "ENRICO*"
000015
000016 Address SDSF "isfexec da "
000017 say "isfexec RC" RC
000018 say "isfcols " isfcols
000019 say "isfcols2 " isfcols2
000020 say "isfdcols " isfdcols
000021 say "isfdcols2" isfdcols2
000022
000023 say "isfexec RC" RC
000024 say isfmsg
000025 do im = 1 to isfmsg2.0
000026 say isfmsg2.im
000027 end
000028
000029 call isfcalls "OFF"
000030 exit
****** **************************** Bottom of Data ****************************
to display the columns names available
I usually prefer to find out from the executing program,
too often I have been burned by enhancement PTFs which changed something without referring to the updated docs
in the whole mess I forgot to tell that the column name for the CPU% id CPUPR