Consultor Eletrônico



Kbase P58680: ** Illegal nested block statement reference to table . (243
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   11/12/2003
Status: Unverified

SYMPTOM(s):

** Illegal nested block statement reference to table <table> . (243)

CAUSE:

Referencing the table outside DO FOR <table> block.

FIX:

The following sample generates error 243.
FIND FIRST CUSTOMER.
DO FOR CUSTOMER :
END.
Use a buffer reference outside the DO FOR block.
Something like:
DEFINE BUFFER bcust FOR customer.
DO FOR customer :
END.