Consultor Eletrônico



Kbase 21691: VST _AreaStatus-Highwater misspelled on V9.1C documentation
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   2/4/2005
Status: Unverified

FACT(s) (Environment):

Progress 9.1C

SYMPTOM(s):

Querying Virtual System Table (VST)

** <program> Could not understand line <number>. (196)

** Unknown Field or Variable name - <field-name>. (201)

_AreaStatus-Highwater Virtual System Table does not work

CAUSE:

On V9.1C Database Administration Guide and Reference, Part III, Chapter 19 Virtual System Tables the information regarding _AreaStatus-Highwater field on VST table _AreaStatus is misspelled. This field is supposed to hold the information regarding the Area high water mark but the correct field name should be _AreaStatus-Hiwater.

If attempting to get information from _AreaStatus-Highwater the error following error messages will appear:

** Unknown Field or Variable name - _AreaStatus-Highwater. (201)
**  Could not understand line 2. (196)

FIX:

Use _AreaStatus-Hiwater instead of _AreaStatus-Highwater in the 4GL code. The following example will work using the correct field name:

FOR EACH _AreaStatus NO-LOCK:
   DISPLAY _AreaStatus-AreaName _AreaStatus-HiWater.
END.