If you use the RAC command, it always puts its output in RACF DATA A. Take a look at the RACOUTP EXEC. This is what actually displays the output from the RAC command. You can suppress the output on the console by setting a global variable, like this:
$RAC_ISPF='Y' 'GLOBALV SELECT $RACGRP PUT $RAC_ISPF' 'EXEC RAC' racf_command $RAC_ISPF='N' 'GLOBALV SELECT $RACGRP PUT $RAC_ISPF' /* now process RACF DATA A */ Of course the other way is to use CMS Pipelines: 'PIPE command EXEC RAC' racf_command '| > RACF OUTPUT A' But, RACF DATA A will still be created On Sat, Sep 19, 2009 at 5:01 PM, Martin, Terry R. (CMS/CTR) (CTR) <[email protected]> wrote: > Hi > > > > I want to capture the output from a RACF command (SETR LIST) and put it into > a file. I am logged on to MAINT issuing the command. How do I do this? > > > > Thank You, > > > > Terry Martin > > Lockheed Martin - Information Technology > > z/OS & z/VM Systems - Performance and Tuning > > Cell - 443 632-4191 > > Work - 410 786-0386 > > [email protected] > > > > WFH on Tuesdays and Fridays > > -- Bruce Hayden Linux on System z Advanced Technical Support IBM, Endicott, NY
