cancel
Showing results for 
Search instead for 
Did you mean: 

Synchronization application for Laptop NW Mobile 7.1

mail
Explorer
0 Kudos

Hi Experts,

How can i synchronize a application inside it, manually??

i appreciate any help!

Regards

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

do you write your own app?

In that case you have two options:

Number 1: use old version of MI7.1:

SyncManager.getInstance().synchronizeWithBackend();

If you need to use MI7.1 syncyou need to do some more things, but at least:

get your actual PersistenceManager and then start the Sync:

com.sap.tc.mobile.cfs.pers.PersistenceManager pm = Context.getPersistenceManager();

SyncManager syncManager = SyncManager.getInstance(pm);

syncManager.synchronize();

Now you can get SyncMessages, State of Sync, etc. by either using syncManager or

com.sap.tc.mobile.cfs.services.SyncListener

Hope this helps.

Regards,

Oliver

Answers (1)

Answers (1)

rohith_deraje
Advisor
Advisor
0 Kudos

Are you asking for sync option from application instead from client ?

Regards

Rohith

mail
Explorer
0 Kudos

Yes, Inside a custom application when is running.