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

rfc

SG141
Active Participant
0 Kudos
184

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
Read only

Former Member
0 Kudos
149

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
Read only

Former Member
0 Kudos
150

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

Read only

SG141
Active Participant
0 Kudos
149

i could'nt understand your point clearly..

can you be more clear .

Read only

Former Member
0 Kudos
149

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