cancel
Showing results for 
Search instead for 
Did you mean: 

Implementation on T51 Syncbo type

former_member207329
Participant
0 Kudos

Hi Guru,

I have to create new SmartSync project.

I have to use the T51 Syncbo type.

Does someone have any example or tutorial on T51 event driven implementation on backend system?

Thanks all.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

There is a note available which describes everything about the T51 syncBO - 711983. Please refer this.

Regards,

Nameeta

Former Member
0 Kudos

Hi,

The only difference between T51 and T01 types of syncbo is the way both perform replication.

In T01, replication is done by Middleware.

In T51, replication is done by Backend.

The only difference while implementing T51 is the way we trigger replication.

Steps:

1) Need to generate report for triggering replication.(In Backend)

2) Need to create entries through a report in MCD about the syncbo information(T51)(InMiddleware)(Its a one time work)

3) Getlist bapiwrapper should be intelligent enough to get the list of only delta changes.

These all information you can find in the above mentioned note.(There are two ways to implement T51, better follow this method)

Thanks,

Karthick

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

The T51 SyncBO is know Server Driven SyncBO. Here delta data is pushed from the backend to the middlware. Here the delta data means the New, Modified and Deleted Data. From the backend we send the Keys of such records.

The process of informing the Middleware is done by means of BTEs or reports.

BTEs on MAM there is a document already available in SDN.

The Reports must be interlligent enough to to Keys of records that are New , Modified and Deleted to Middleware.

When the keys are identified we send the keys my call the the FM 'MEREP_DELTABO' with RFC destination to the Middleware.

When this FM is called in the report, this report will populate the MEREP_DELTABO table with Keys and it will schedule a background job MEBDT<SyncBOName>. This job will call getdetail BAPI for the Keys present in the MEREP_DELTABO table.

After Successfull execution of background job all the Data in the MEREP_DELTABO table will be deleted.

If there is any error then there will still be entries in the MEREP_DELTABO table with Statys 'E' or 'P'.

Also as Karthick has mentioned MCD must be created.

Thanks...

Preetham S