Consultor Eletrônico



Kbase P106144: The 4GL generator makes hidden fields visible
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   28/07/2005
Status: Unverified

FACT(s) (Environment):

OpenEdge 10.0B
Dynamics

SYMPTOM(s):

Dynamic lookups hidden with 4GL code visible with 4GL generated code

The 4GL generator makes hidden fields visible

Fields are being hidden in initializeObject with:


"RUN 'hideObject' IN hAddrObj."

CAUSE:

The handle to the field is not valid because the getallfieldhandles function call is being done before the RUN SUPER in the containers super procedure. This is before all the objects have been created.

FIX:

Move the getAllFieldHandles call to after the RUN SUPER.