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();

CommonForm1 = GetForm("CommonForm.CommonForm1");
Find(Catalog.Name, "Joy");

Compliant Solution

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

Date = CurrentSessionDate();

OpenForm("CommonForm.CommonForm1");
StrFind(Catalog.Name, "Joy");

See