cancel
Showing results for 
Search instead for 
Did you mean: 

example of Sender RFC synchronous abap program

Former Member
0 Kudos

Hi,

I am practising creating RFC synchronous abap program, i there any example?

Thanks

Antonis

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

This one is quite an easy .

RFC synchronus, only one attribute in input and one in the output.

If u give "2 " as input it will give you " 20 " as response..

FUNCTION ZSAMPLE.

*"----


""Local interface:

*" IMPORTING

*" VALUE(NUM) TYPE I

*" EXPORTING

*" VALUE(RESULT) TYPE I

*"----


Result = NUM * 10.

perform get.

ENDFUNCTION.

form get.

endform.

Regards,

S.K.Karthikeyan.

Answers (2)

Answers (2)

Former Member
0 Kudos

RFC to SOAP

saptechnical.com/Tutorials/XI/RFCtoSOAP/page1.htm

RFC-Webservice

saptechnical.com/Tutorials/XI/RFC2WebService/Page1.htm

Former Member
0 Kudos