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: 

Remote Function Module

Former Member
0 Kudos

Hi,

Can any one suggest me the RFC, the requirements are given below.

I need a Remote functional Module similar to CRM_ISA_SHIPTO_ADD_TO_BASKET.

This RFC will add the billto (instead of shipto) to the shopping basket. Parameter will be same expect it will take billto as input instead of shipto.

5 REPLIES 5

Former Member
0 Kudos

Hai Radhika

Check the following RFC

The step by Step Creation

Sending system side(SEND--800)

-


Create function module by using Tcode SE37 or SE80

goto attributes select remote function

activate

Receiving system side(RECE--000)

-


goto Tcode SM59

here select the R/3 Connections-->click on Create Button

give RFC Desstination : TESTRFC

Connection Type : 3 for Connecting two systems

Description : Some meaningful Description

Press enter

give Target system Name : SEND

Language : EN

Client : 800

user Name : sapuser

Password : xxxxxx

save this connections & click on test connections(f8)

& Remote logon(f7)---> it will open a session

with client 800 that is your sending system

then only your RFC is correct

create a report in SE38 Tcode

data : c1 type i.

data : itab like mara occurs 0 with header line.

call function 'ZRFCFM' destination 'TESTRFC' --->Function Module 'ZRFCFM' your just create at Sending system

exporting

importing

exceptions.

Thanks & regards

Sreenivasulu P

0 Kudos

Hi thanks.

Actually iam looking for a FM similar to 'CRM_ISA_SHIPTO_ADD_TO_BASKET'. It is accepting Ship to as input, but i want a FM which shud accept Billto as input instead of shipto. remaining and all like parameters should be same.

Ur help is highly appreciable.

Thanks,

Radhika.

0 Kudos

Hi Radhika,

I could not find the RFC you mentioned in SAP client. but give a try to the following FMs....

IAC_CSO_ITEMS_UPD_FROM_BASKET

PIA_CSO_BASKET_FILL_FOR_OUTPUT

IAC_CSO_BASKET_APPEND_EMPTIES

RSCRMBW_BUCKET_ADD_VALUES

Hope it helps...

else you can create a wrap around over this RFC or copy this RFC as a ZFM and change the inputs as per your requirement.

Lokesh

pls. reward appropriate points.

0 Kudos

HI it is in CRM

Former Member
0 Kudos

as