Consultor Eletrônico



Kbase P95474: Error assigning temp-table:handle to a Widget-Handle
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   30/06/2006
Status: Unverified

FACT(s) (Environment):

Progress 9.1x

SYMPTOM(s):

Error assigning temp-table:handle to a Widget-Handle

** Unknown Field or Variable name - <field-name>. (201)

Following example code gives error message when compiling:

DEFINE VARIABLE tth AS WIDGET-HANDLE.
DEFINE TEMP-TABLE tmptblx LIKE customer.
tth = tmptblx:HANDLE.

FIX:

Change the following line: "tth = tmptblx:HANDLE" to
tth = TEMP-TABLE tmptblx:HANDLE
or
tth = BUFFER tmptblx:HANDLE