Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

changed articles in one server are automatically updated in other server?

Former Member
0 Kudos

Hi,

i got an issue that when we are changing an article master data in Master Data Server ( where all Master Data is Maintained ) are Automaticlly Updated in Transactional Data server ( where all Transactions are maintained ). For Articles, ARTMAS Message Type is there but it can't used in Chnage Pointer Techinque becuase it's restricted to BAPI by SAP itself.

but my problem is how Changed Article Data is Updated in Remote Server Automatically.

can anyone suggest me how to do this.

2 REPLIES 2

Former Member
0 Kudos

Hi Ramana,

You can use RFC function modules to update the data between two independent SAP systems. Generally in practice there are three types of communications possible:

1) tRFC

2) qRFC with outbound queue (Used basically for non-SAP server)

3)qRFC with inbound queue

A sample code is attached

report rstrfct0.

...

call function u2019RFC_FUNCTIONu2019

destination RFCDEST

in background task

( as separate unit )

exporting ...

tables ...

...

commit work.

Former Member
0 Kudos

oijh