Field encrypting

Hi all, I need to encrypt a field such as password-field. For example i want to make password-history. Is this doable? Any help is highly appreciated. Thanks Best regards Rizal

Hi! You can use table 2000000002 “User” to get an encrypted text (native DB only!?); e.g. User.INIT; User.VALIDATE("User ID", 'TEMP'); User.VALIDATE(Password, PlainText); User.INSERT; // I'm not sure if this is required EncryptedText := User.Password; User.DELETE; Hope this could help! Regards, Jörg