Consultor Eletrônico



Kbase P11733: SmartDataField does not make use of the proper numeric format at development time.
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/14/2010
Status: Unverified

SYMPTOM(s):

Starting up Progress using the European Numeric Format parameter (-E).

SmartDataField uses the American numeric format instead of the European.

CAUSE:

Bug# OE00082901

FIX:

Assign "European" to the session's numeric format in an override version of the SmartDataField's initializeObject ADM2 procedure. e.g:

PROCEDURE initializeObject :
/* Code placed here will execute PRIOR to standard behavior. */
ASSIGN SESSION:NUMERIC-FORMAT = "European":U.
RUN SUPER.
/* Code placed here will execute AFTER standard behavior. */
END PROCEDURE.