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 DESTINATION

Former Member
0 Kudos

HI experts,

iam working on ALE and IDOC, can any body explain me about RFC destination briefly.

thanks

srinivas

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi balla,

can you explain your problem in bref ehat do you want

6 REPLIES 6

Former Member
0 Kudos

RFC Destination contains the information for performing a Remote function call on an External system.

Essentially it contains the System location details and Login details.

it is used while calling a RFC from ABAP program using

CALL FUNCTION 'FM' DESTINATION <Rfc Dest>

-


-


it is also required while configuring ALE distribtion.

RFC destinations are created in Tcode SM59.

There are different types such as R/2 , R/3 , TCP/IP ETC.

for R/3 connection following settings are required

HOSTNAME./ IP ADDRESS

SYSTEM NUMBER

LOGIN :

CLIENT, USER, PASSWORD

You can perform a Remote login for testing the connection.

Former Member
0 Kudos

Regards

Vasu

Former Member
0 Kudos

Hi,

You can create RFC destination in sm59 in tech settting u give target host name,

in logon security tab u give

Language

Client

User

Password

Reward points,

Bohra.

Former Member
0 Kudos

hi balla,

can you explain your problem in bref ehat do you want

Former Member
0 Kudos

hi srinivas

for remote communication in distribution systems there is a sender and receiver

onesystem to another system communication we should create the destinations for each system to login and communicate the systems

To create Rfc

go to se37 create a function module which is remote enabled and type the code

and come to sm59 create the destinaton there

call function 'zfunction'

destination 'd810'

it will connect from u r system to 810 client

take the info from the destination .........

The function module should present at the destination........

revert points if it usefull