Consultor Eletrônico



Kbase P111744: 4GL: Logical field appears to be displayed in mixed Spanish and English languages.
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   12/12/2005
Status: Unverified

SYMPTOM(s):

4GL: Logical field appears to be displayed in mixed Spanish and English languages.

A FOR EACH statement returns "SI" when the logical field value is TRUE and "NO" when it is FALSE:
FOR EACH TableName NO-LOCK:
DISPLAY LogicalField.
END.

CAUSE:

The data dictionary default display FORMAT of the field is defined as "SI/NO".

FIX:

This is expected behavior. To change the display of logical fields, either modify the definition of their default display FORMAT in the data dictionary or override the default display FORMAT by explicitly specifying a new FORMAT in the DISPLAY statement:
FOR EACH TableName NO-LOCK:
DISPLAY LogicalField FORMAT "TRUE/FALSE".
END.