CreateWorkFlowObject
.
customize ProcessOwnership<Object> {
owner = expression {
TeamRoom tr = cooobj.objteamroom;
if (tr && tr.HasClass(#TeamRoom)) {
return tr.objowner;
}
else {
return cooobj.objowner;
}
}
group = expression {
TeamRoom tr = cooobj.objteamroom;
if (tr && tr.HasClass(#TeamRoom)) {
return tr.objowngroup;
}
else {
return cooobj.objowngroup;
}
}
}
void
COOWF@1.1:ProcessOwnership(
key ObjectClass
objclass,
out optional User
owner,
out optional Group
group)
Name |
Description |
objclass |
applies to objects of the defined object class
|
owner |
defines an expression to get the owner of the process
|
group |
defines an expression to get the owning group of the process
|
Additional Information