PAGE('SYNC_PROCESS', …)

Use this command to start processing data downloaded during background synchronization, if data exists. If the data has been processed successfully the ActionCodeSuccess is executed. If the processing fails the ActionCodeFailure is run.

PAGE('SYNC_PROCESS', 
  string ActionCodeSuccess,
  string ActionCodeFailure);

example:
PAGE('SYNC_PROCESS', 
  'SYNC_SUCCESS',
  'SYNC_FAILURE');