Replaces the current set of workgroup(s) by a new set of workgroup(s) specified
in the file.
Operation Notes |
 |
AIFWGREPLACE requires a file number as an input parameter. The file
containing the workgroup specifications needs to be opened by the caller.
The file should
be an ASCII file (i.e., The file may be temporary or permanent and
have fixed or variable length records). The file will contain specifications
for creating user-defined workgroups. Workgroup creation will not begin until
all specifications within the file have passed a syntax check. Furthermore,
the system will consider the creation an atomic operation (i.e., either all
workgroups within the file will be created or none). The file thus establishes
a new set of workgroups, deleting all existing workgroups. This results
in the creation of new workgroups, and the deletion of the old workgroups.
The five default workgroups cannot be deleted; if they are not in the
specified file, they will retain their existing characteristics.
If a semantic or syntax error occurs while processing the file, AIFWGREPLACE
returns overall status less than zero. If the overall status error number is
between the syntax or semantic error range, and the first three
items (19501 to 19503) are specified, then the CI error information is
returned in those items.
The specification for an individual workgroup is given below.
Workgroup = workgrp
;MEMB_LOGON = logon
;MEMB_PROFILE = profile
;MEMB_PROGRAM = program
;MEMB_QUEUE = queue
;Base = base
;Limit = limit
;MinQuant = min
;MaxQuant = max
;Boost = {DECAY | OSCILLATE}
;Timeslice = tslice
;MinCpuPct = min percentage
;MaxCpuPct = max percentage
|
Multiple specifications are permitted within a particular membership criteria
(with commas as delimiters), and each criteria need not be specified
(unspecified criterias are assumed matches). Although a minimum of one criteria
is required. An "&" or Return may be used to indicate the continuation of a
specification onto a new line.
The example above shows each parameter on a new line. However, the entire
workgroup specification may reside in one physical record. The only requirement
is that it is illegal to have two workgroup specification in the same physical
record.
Specifications my be "commented out" by using the COMMENT keyword, as shown
below. Characters appearing on the same line and after the COMMENT keyword
will be ignored.
COMMENT Workgroup = Old_Finance_Wg
COMMENT ;QUEUE = ES
COMMENT ;Base = 200
COMMENT ;Limit = 230
COMMENT ;MinQuant = 200
COMMENT ;MaxQuant = 1000
COMMENT ;Boost = DECAY
COMMENT ;Timeslice = 400
|
Below is an example of a file that defines workgroups:
WORKGROUP=Program_Development
;MEMB_PROGRAM=(EDITOR.PUB.SYS; QEDIT.@.@; HPEDIT.@.@)
;MEMB_LOGON=(MORNING,@.TEST; @.MYTEST)
;BASE=160
;LIMIT=170
WORKGROUP=Payroll_Online
;MEMB_PROGRAM=(PAYROLL.@.PRAPP)
;QUEUE=CS
;BASE=152
;LIMIT=200
;BOOST=OSCILLATE
WORKGROUP=Payroll_Batch
;MEMB_PROGRAM=(PAYROLL.@.PRAPP)
;QUEUE=(DS,ES)
;BASE=180
;LIMIT=230
WORKGROUP=CS_Default
;MEMB_QUEUE=(CS)
WORKGROUP=DS_Default
;MEMB_QUEUE=(DS)
WORKGROUP=ES_Default
;QUEUE=(ES)
|
This file results in following distribution of processes to the workgroups.
Program | User Logon | Queue | Workgroup
|
---|
EDITOR.PUB.SYS | CHUCK.TEST | CS | Program_Development |
EDITOR.PUB.MYTEST | DOUG.MYTEST | CS | CS_Default |
EDITOR.PUB.SYS | SLC.TEST | BS | Program_Development |
HPEDIT.PUB.SYS | SLC.MYTEST | BS | Program_Development |
QEDIT.PUB.SYS | SLC.MYTEST | BS | Program_Development |
PAYROLL.PUB.PRAPP | SUSAN.PRAPP | CS | Payroll_Online |
PAYROLL.RPT.PRAPP | FRED.PRAPP | DS | Payroll_Batch |