Kbase P55458: Application stops unexpectedly with error 76
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  20/11/2003 |
|
Status: Unverified
SYMPTOM(s):
Application stops unexpectedly with error 76
** Invalid character in numeric input <character>. (76)
INTEGER( <char-field> ) expression used in WHERE clause of FIND statements
CAUSE:
Table contains unknow value in the character field used in INTEGER () expression
FIX:
Use STRING( expression ) on the other side of the logical condition instead of INTEGER() expression.
Example:
Use
WHERE ... AND <char-field> = STRING( <integer-value, <format> )
instead of
WHERE ... AND INTEGER( <char-field> ) = <integer-value>