Application Development and Automation 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: 
Read only

Regading RFC

Former Member
0 Likes
464

Hi All,

There exists a ZTABLE (ECC server) and I am maintaining the same ZTABLE in SRM System ...... Now whenever a new record is added or for an existing record is changed in ZTABLE (ECC server) based on the date_change field it should update the ZTABLE (SRM server).(We should be able to all pull those records accordingly)..... What is the procedure for this

We should use -


RFC or IDOCs or any Zprogram to update these updated records

What is the procedure and steps I need to take care

Can anybody help me?

Hi All,

There exists a ZTABLE (ECC server) and I am maintaining the same ZTABLE in SRM System ...... Now whenever a new record is added or for an existing record is changed in ZTABLE (ECC server) based on the date_change field it should update the ZTABLE (SRM server).(We should be able to all pull those records accordingly)..... What is the procedure for this

We should use -


RFC or IDOCs or any Zprogram to update these updated records

What is the procedure and steps I need to take care

Can anybody help me?

3 REPLIES 3
Read only

Former Member
0 Likes
430

Hi,

First create a RFC connection between the two systems and then create a function module in SRM with attribute remote func module and then create a program in ECC where u will get the records and pass it into the function module created and in that function module modify the records in table ZTAble

regards,

Santosh Thorat

Read only

Former Member
0 Likes
430

Hi,

You can try writing a User Exit for the Table in the ECC system, that would fire

every time a change is made, then it would go to the SRM system using the RFC destination

and accordingly update or insert or delete the entries.

chk out this function module/user-exit - EXIT_SAPLSEDD_001

Regards,

Samson Rodrigues.

Read only

rainer_hbenthal
Active Contributor
0 Likes
430

Build up an RFC Connection and then write a function module on the target side which will get the new values und inserts them in the table.

On the sender side write a z-programs which will read the new values and calls the functions using the destination phrase.

This is quite more simple rather then building up your own idocs with your own process logic.