Always use compilation pragma in form module

An absence of a compilation directive before the procedure means using a directive by default. A directive by default is AtServer that leads to extra server call and it is not working on web-client.

Noncompliant Code Example

Procedure Server()

EndProcedure

Compliant Solution

&AtServer
Procedure Server()

EndProcedure
 

See