Consultor Eletrônico



Kbase P63204: Dynamics: Calculated field of the logical data type show ? in a browse or viewer on add
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   2/4/2010
Status: Unverified

SYMPTOM(s):

Dynamics: Calculated field of the logical data type show ? in a browse or viewer on add

FACT(s) (Environment):

Dynamics 2.1A

CAUSE:

The exact cause is unknown at the time of this writing

FIX:

In the SDO data logic procedure create internal procedure named 'modifyNewRecord'
and the following code:
ASSIGN b_<SDO_primary_table_name>.<calculated_field_name> = FALSE.
For example, if calculated field named 'archived' of logical data type
is added to the dynSDO build against the 'customer' table, then the code is:
ASSIGN b_customer.archived = FALSE.
FALSE is the value that will be accepted as the initial value.