Replication Function not triggering (cross class)

“but calling the function cross-class somehow makes it botch the job with actually executing the function serverside.”

Ah there it is then!

If you are going to call a server function cross class you have to first go server side on the class you are currently in!

Here’s the work flow I have experienced to be necessary time after time

again the scenario is calling a server function in Class B from Class A

here is what I do

Class A local (non server) calls
Class A server function to then call
Server function in Class B

I can’t say this is required in every case, in fact I am sure it isnt, but if ever cross class server function is not working, try my above flow

I’ve had to use it many times!

:slight_smile:

Rama