Kbase P21472: Error 247 for getNewRow after upgrading to Progress 9.1D
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  3/18/2003 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.1A
FACT(s) (Environment):
Progress 9.1C
SYMPTOM(s):
** Unable to understand after -- "<string>". (247)
** Unable to understand after -- "getNewRow". (247)
CHANGE:
Migrated from Progress 9.1A to Progress 9.1C
CAUSE:
The getNewRow() function used to be defined such that the function could be directly referred to, however, the function has now been moved into a super procedure and can no longer be directly referred to.
FIX:
Use the DYNAMIC-FUNCTION function to call the getNewRow() function.
For example, use the following
IF DYNAMIC-FUNCTION('getNewRow') = TRUE THEN
...
instead of
IF getNewRow() = TRUE THEN
...