Kbase P62166: What is the meaning of the Excptns column in the licrpt.p report
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  06/10/2004 |
|
Status: Unverified
GOAL:
What is the meaning of the Excptns column in the licrpt.p report
FACT(s) (Environment):
Progress 9.1x
FIX:
The location of the file is $DLC/src/samples/licrpt.p
Excptns column represents the number of connections over the number of licensed user connections.
From the source code of licrpt.p and the section pertaining to Excptns:
/* calculate exception */
IF (work-file.licUsrs = -1) OR (MaxCon <= work-file.licUsrs) THEN
Exception = 0.
ELSE
Exception = MaxCon - work-file.licUsrs.