IBM Z System Automation

  • 1.  GROUP of AUTOOPS ??

    Posted Mon October 14, 2019 10:39 AM

    Hi In a Timer definition (option 30), the field TASK ,  is explained in the Help , and mentions that it can be a "group",  (with + sign ),  How do I define such a group?

    Searched in the Automation Policy definition , but could not figure out how do Define this group...

    Jorge Nagasaki


  • 2.  Re: GROUP of AUTOOPS ??

    Posted Thu October 17, 2019 11:14 AM
    Hello Jorge,
    sorry for the belayed answer.  I think this the group name that you would define in the command authorization table.   Example:
    GROUP GRP1 NETOP2,AUTO1
    defines a group GRP1 consisting of two operators.  So, when you specify +GRP1 in that field, I think you basically allow NetView to pick any of the operators in that group to run the timer command.  The CHRON command description describes the ROUTE parameter like this:
    The name of a task or a group name. If a group name is specified, the command runs on the first task in the group that is active when the timer expires. This is identical to the ROUTE function of the AT, EVERY, and AFTER commands.
    Best regards
    Jürgen
     
    JuergenHoltz


  • 3.  Re: GROUP of AUTOOPS ??

    Posted Thu October 17, 2019 01:34 PM

    Thanks Jurgen,

    This is the table we define in the SECOPTS.CMDAUTH, right?

    So if we use SAF RACF , I just define a RACF Group right?

    Jorge Nagasaki


  • 4.  Re: GROUP of AUTOOPS ??

    Posted Fri October 18, 2019 12:37 AM

    Jorge,

    unfortunately it's not. A +Group is something you define in NetView either via CNMSTYLE statements or via the ASSIGN command. So nothing here in the RACF area, this is plain NetView business. This is how a CNMSTYLE Statement would look like:

    ASSIGN.STATGRP.GROUP = NETOP1, NETOP2,AUTO1

     

    The same statement done with the ASSIGN command:

    ASSIGN GROUP=+STATGRP,OP=(NETOP1,NETOP2,AUTO1)

     

    NetView Groups comprise of a trailing '+' and following 7 chars at max. This is an exerpt of the help for the AT command regarding Groups:

    Group names must begin with a plus (+) sign. A group name instructs 
    the NetView program to queue the command to the first operator
    in that group, according to the ASSIGN order, that is logged  
    on. If a group name was specified which contains no logged-on 
    operators, the command is not run.
                         

     

    Dietmar

    Dietmar Knodel


  • 5.  Re: GROUP of AUTOOPS ??

    Posted Fri October 18, 2019 12:56 AM

    Hello Dietmar,

    Thank you for putting that right.  The term "operator group" seems to be overloaded then.  We'll add a comment in the doc.

    Best regards

    Jürgen

     

     

    JuergenHoltz


  • 6.  Re: GROUP of AUTOOPS ??

    Posted Fri October 18, 2019 08:57 AM

    Thank you

    Jorge Nagasaki