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: 

rfc

SG141
Active Participant
0 Kudos
115

i have developed a rfc which should read data from Development Client and update table in Production client.

the rfc is moved to quality client (where it should read data from dev and update in quality).

however it is reading data from dev and updating dev.

how to fix this error.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
80

hi,

the reason could be that you have passed the RFC destination of the development system only.. so put a condtion.

if sy-sysid = 'DEV'

call the RFC with dev RFC destination

elseif sy-sysid = 'QA'

call the RFC with quality destition

3 REPLIES 3

Former Member
0 Kudos
81

hi,

the reason could be that you have passed the RFC destination of the development system only.. so put a condtion.

if sy-sysid = 'DEV'

call the RFC with dev RFC destination

elseif sy-sysid = 'QA'

call the RFC with quality destition

SG141
Active Participant
0 Kudos
80

i could'nt understand your point clearly..

can you be more clear .

Former Member
0 Kudos
80

Hi Karthik,

first of all: It's not recommended to transfer "data" between development, quality and productions systems via RFC!

To your question: That depends on the RFC, if it's a server or a client call (that means: which server provides which data to which client). I would check the RFC-destinations in SM59...

Further information would be helpful.

Regards,

Thomas