Kbase P12491: ** Value cannot be displayed using . (74)
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  6/26/2009 |
|
Status: Verified
SYMPTOM(s):
Displaying Decimal field fails with error
** Value <value> cannot be displayed using <format>. (74)
FACT(s) (Environment):
All Supported Operating Systems
Progress/OpenEdge Product Family
CAUSE:
The value of a field or variable exceeded the format specified. If the data is not erroneous, increase the size of the format to accommodate it.
FIX:
Make the format of the field you need to display as big as the maximum value for that field.
i.e. Field value is 12345.67 and format z9.99 will lead to error 74.
You should put a format zzzzz9.99 to avoid the problem
Example: DISPLAY mytable.myfield FORMAT ">>>>>>>>>>>>>>>>>9.99".