Skip to Content
0
Dec 05, 2011 at 07:34 AM

How to synchronize individual MBOs

31 Views

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.