1

In an Android app developed in Genexus Ev3 U4, I need to execute a process in the server after the synchronization ends. The process is an external process in SQL server that uses the recently added records to generate a report.

How could I do that?

4

1 回答 1

3

在复制器将从设备传入的所有 BC 操作应用到服务器数据库后,将调用该过程GxAfterEventReplicator(在文件夹下)。GxSynchronization

此过程接收&EventResults类型变量,该变量GxSynchroEventResultSDT保存有关由于同步而应用的 BC 的信息。

然后,您可以修改此过程以通过发出sql命令来添加对 SQL 存储过程的调用。

于 2015-09-17T20:55:50.873 回答