cancel
Showing results for 
Search instead for 
Did you mean: 

How to synchronize individual MBOs

snehal_kendre
Active Contributor
0 Kudos

Hi Experts,

I tried to search a lot but i didn't find the answer.

I want to know how i can synchronize individual MBO independant of other MBOs?

I have 4 MBOs created from RFC's without any relationship. and all MBOs have there own synchronization parameters.

When i checked the trace in SAP i found that Whenever is set parameter of any individual MBO and call synchronize

(<DB>.synchronize())

all the RFCs are getting called by Sybase unwired server

It results in performance issue.

I found some method is cookbook document that suggest me to create a connectionmanager and synchronization manager

and then use

syncManager.synchronizeApplication(c, "<MBO class name>");

method

But its not working

even the i tried sing the document

http://www.sybase.de/files/Technical_Documents/Sybase_SUP_clientObjectAPI_cookbook.pdf

following methods

SynchronizationManager.Instance.SynchronizeApplication("Customer");

and

Customer.Synchronize()

Both not availble for me (Im creating blackberry application using generated blackberry code)

I do have

SynchronizationManager.Instance.SynchronizeApplication(<Connectionname>,"Customer"); method availabel but it give me class not found error.

Please let me know what im doing wrong here.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Snehal

Rather using the default Synchronization Group. Create four different Sunchronization Groups and try by placing your MBO in these Synchronization Groups.

During the time of Synchronization, synchronize the needed.

Thanks and regards,

Rinzy Deena Mathews.

snehal_kendre
Active Contributor
0 Kudos

Hi RInzy,

Thanks for your reply.

At present Im using the same approch. individual synchrinization group for individual MBO.

But i dont thinks its a good idea from design point of view.

But does no method exist to synchronize individual MBO other than this?