Consultor Eletrônico



Kbase P97683: How to capitalize all values of a given database table field?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   16/11/2004
Status: Unverified

GOAL:

How to capitalize all values of a given database table field?

FIX:

The following code capitalizes all the values of the Name Field of the Customer database table:
FOR EACH Customer:
Customer.Name = CAPS(Customer.Name).
END.