I have create a Common Module, with thes three properties checked: Client, Server and Server call.
Here is the code (The Common Module name is ServiceSrv):
| Code |
|---|
&AtClient Function ClientMethod() Export ServiceSrv.ServerMethod(); Return ""; EndFunction &AtServer Procedure ServerMethod() Export // TODO EndProcedure |
Then, I have an AtClient method that calls an AtServer method, both are defined inside the same Common module, but when I run the application and execute the AtClient method from a Common Form, an error raises saying "Object module not found (MethodServer)"
What is wrong here?

