Using non-recommended methods

There are not recommended methods, instead of which either SSL methods or other methods should be used.

Noncompliant Code Example

Message("Text");

Date = CurrentDate();

Compliant Solution

Message = New UserMessage();
Message.Text = ("Text");
Message.Message(); 

Date = CurrentSessionDate();

See