I am not talking about using COMMNDxx here.  I am talking about
using the COMMAND program from the CBT.   The problem is that
RMF III needs to be started via MVS MODIFY command to RMF.  
You CAN put RMF startup in COMMNDxx, but since there is no 
built in delay or way to recognize that RMF has started prior
to the modify (without an exit), COMMNDxx nor JES2 $VS would work.  

Someone else mentioned an MPF exit.   That works also.  As I wrote in 
my original response -  soooo many ways to deal with this.

Regards,

Mark
--
Mark Zelden - Zelden Consulting Services - z/OS, OS/390 and MVS       
mailto:[email protected]                                        
Mark's MVS Utilities: http://www.mzelden.com/mvsutil.html 
Systems Programming expert at http://expertanswercenter.techtarget.com/

*** Please note the new URL for Mark's MVS Utilities ***


On Fri, 8 Apr 2011 13:22:18 -0400, Rob Schramm <[email protected]> wrote:

>You can always jam it into the end of the JES2 parms.
>
>$VS,'any old mvs command here'
>
>The problem with COMMNDxx is there is absolutely no order to the
>execution... which is documented in the manual.
>
>Getting some sort of automation working is probably a good idea in general
>and should return the amount of effort to get something in place over time.
>
>Rob Schramm
>
>
>On Fri, Apr 8, 2011 at 10:09 AM, Mark Zelden <[email protected]> wrote:
>
>> On Fri, 8 Apr 2011 16:46:11 +0800, ibmnew <[email protected]> wrote:
>>
>>
>> > do  I prepare a proc and   put  COM='S RMFIII' statement in the COMMND00
>> >after COM='S RMF.RMF,,,MEMBER(00)' statement
>> >
>> >      //RMFIII    PROC
>> >      //COMMAND  EXEC PGM=COMMAND
>> >      //IEFRDER  DD  *
>> >        D R,R
>> >        DELAY 10
>> >        F RMF,START II
>>
>>
>> In my sandbox LPARs I have 2 STCs - STARTSYS and SHUTSYS.  These
>> are procs that execute the COMMAND program and get their input from
>> parmlib members.
>>
>> You could continue to put   COM='S RMF.RMF,,,MEMBER(00)  in your
>> COMMNDxx member and do the F RMF,START III from a COMMAND STC,
>> but I put just about everything in my "STARTSYS" process.  The only
>> things in COMMNDxx are things started SUB=MSTR and "STARTSYS" itself.
>> Although there is no reason a COMMAND STC can't run SUB=MSTR and
>> as a matter of fact, I run it that way at shutdown so it can shutdown
>> JES2 before it does a VARY XCF OFFLINE and shuts itself down.
>>
>> Example COMMNDxx:
>>
>> COM='TRACE ST,128K'
>> COM='START JES2,PARM='WARM,NOREQ''
>> COM='START VLF,SUB=MSTR'
>> COM='START RRS,SUB=MSTR'
>> COM='START STARTSYS.STARTSYS'
>>
>> Example STARTSYS proc:
>>
>> //STARTSYS PROC
>> //**********************************************************
>> //* COMMAND IS FROM CBT FILE 019 - HTTP://WWW.CBTTAPE.ORG
>> //**********************************************************
>> //STARTSYS EXEC PGM=COMMAND,TIME=1439
>> //STEPLIB  DD  DISP=SHR,DSN=authorized.loadlib
>> //IEFRDER  DD  DISP=SHR,DSN=sandbox.parmlib(STRT&SYSNAME.)
>>
>> Example input from "sandbox.parmlib"
>>
>> * CHANGE VVDSSPACE FROM DEFAULT OF (10,10)  - Z/OS 1.7 & ABOVE
>> F CATALOG,VVDSSPACE(30,15)
>> *  DYNAMIC LPA ADDS FROM PDSE LIBRARIES
>> SETPROG LPA,ADD,MASK=GSK*,DSN=SYS1.SIEALNKE
>> *             START TASKS
>> S CSF
>> S NET
>> DELAY=15
>> S TCPIP
>> DELAY=10
>> S OMPROUTE
>> S TN3270
>> S RMF,,,MEMBER(M0)
>> S SDSF
>> S HCHECKER
>> DELAY=10
>> S TSO
>> F RMF,START III
>>
>>
>> Hope this explains it all more clearly.
>>
>> Regards,
>>
>> Mark
>> --
>> Mark Zelden - Zelden Consulting Services - z/OS, OS/390 and MVS
>> mailto:[email protected]
>> Mark's MVS Utilities: http://www.mzelden.com/mvsutil.html
>> Systems Programming expert at http://expertanswercenter.techtarget.com/
>>
>> *** Please note the new URL for Mark's MVS Utilities ***
>>
>> ----------------------------------------------------------------------
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to [email protected] with the message: GET IBM-MAIN INFO
>> Search the archives at http://bama.ua.edu/archives/ibm-main.html
>>
>
>
>

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

Reply via email to