Kbase P81674: Error 78 with large Decimal Dynamic Lookup
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  4/20/2007 |
|
Status: Unverified
FACT(s) (Environment):
OpenEdge 10.0A
SYMPTOM(s):
Error 78 with large Decimal Dynamic Lookup
Dynamic Lookups based on large decimal fields can result in error 78 when the lookup is being populated.
** Value too large for integer. (78)
CAUSE:
Bug# 20040525-005
CAUSE:
This is a known issue being investigated by Development
FIX:
Modify getDataValue in Lookup.p. Replace the code:
ASSIGN
cChar = hLookup:INPUT-VALUE.
IF NOT LENGTH(hLookup:INPUT-VALUE) > 0 THEN
with:
ASSIGN
cChar = hLookup:INPUT-VALUE.
IF NOT LENGTH(cChar) > 0 THEN