Kbase P112588: 4GL: (3444) when using the PERSISTENT RUN option of ON Statement.
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  1/16/2006 |
|
Status: Unverified
SYMPTOM(s):
Compile-time arguments cannot be used with PERSISTENT RUN. (3444)
The offending code includes:
ON 'CHOOSE' OF BUTTON-1
PERSISTENT RUN alpha (pcVariable) IN THIS-PROCEDURE.
CAUSE:
Incorrect syntax. The parameter list comes after the 'IN THIS-PROCEDURE' option.
FIX:
The correct syntax:
ON 'CHOOSE' OF BUTTON-1
PERSISTENT RUN alpha IN THIS-PROCEDURE (pcVariable).