Consultor Eletrônico



Kbase P100155: How to display empty fields in a browse
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   01/08/2005
Status: Unverified

GOAL:

How to display fields of multiple tables including empty entries if no record is available within a single browse

FIX:

Use calculated field for filling the column of the browse which has to contain empty values.
Example code:
FUNCTION Fillmyf3 RETURNS CHARACTER
find T3 where T3.i3 = T1.i1 no-error.
if available T3 then RETURN T3.f3.
Else RETURN "".
END FUNCTION.