Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member131390
Product and Topic Expert
Product and Topic Expert

What is RFC?


A remote function call (RFC) is the standard interface used for integrating on-premise ABAP systems to the systems hosted on cloud using SAP cloud connector.

In the SAP system, these functions are provided by the RFC interface system. The RFC interface system enables function calls between two SAP systems, or between an SAP system and an external system.

Synchronous RFC receiver adapter


In the first version of RFC adapter, synchronous RFC (sRFC) is made available for you to execute the function call based on synchronous communication, which means that both the systems must both be available at the time the call is made.

Use case: Use RFC Adapter to execute remote function module on ABAP system


This blog covers the end to end scenario of creating RFC integration flow by using SAP Cloud Platform Integration web UI. It also gives you an insight on how to create RFC destinations via SAP cloud connector in SAP Cloud Platform, setting up additional (necessary) properties in the destination configuration etc. Towards the end of the tutorial you will see a simple use case of invoking request-response method (using Postman Web client tool) for retrieving data from ABAP system (for example flight details) using RFC adapter.

Prerequisite:


Ensure that following prerequisites are met before getting started:

Creating integration flow for RFC adapter



  1. Open browser and enter the URL - https://<tenant_name>.int.sap.hana.ondemand.com/itspaces/

  2. Under Design, select Create to add new package. 

  3. Click Save.

  4. Select your package and go to ARTIFACTS tab.

  5. Choose Add > Integration Flow.

  6. Enter name to create new integration flow artifact and click OK.

  7. Click the new integration flow you have created and click Edit.

  8. Connect Sender to start using HTTPS adapter type.

  9. Under HTTPS, go to Connection tab set the address. For instance, here we set it as “/demo”.

  10. Go to Design Palette and select Call > External Call > Request Reply

  11. Add one receiver and connect Request-Reply call via RFC.

  12. Go to Connection tab under RFC and provide destination name in Name field.


You can create dynamic destinations by using regular expressions (header, property) in the Content Modifier. To do that, you need to first select the Content Modifier in the integration flow. Then go to Message Header and assign corresponding value to the header name as the destination name. Select your RFC adapter and assign dynamic destination by using the expression: ${header/property.<header/property name>}. For example ${header.abc} or ${property.abc} where abc is the value of the header or property.


13. (Optional and applicable to BAPI functions ) Choose Send Confirm Transaction to enable the option if you want to support BAPI functions that require BAPI_TRANSACTION_COMMIT to be invoked implicitly by the RFC receiver adapter.

Ensure the following ABAP functions are whitelisted in Cloud connector before using this option:


  • BAPI_TRANSACTION_COMMIT




  • BAPI_TRANSACTION_ROLLBACK





14. Click Save

 

Use the destination name that is created for you in the subscriber account in HCP. See step 4 of the following section "Creating RFC destination in SCP".

Creating RFC destination in SCP





    1. Go to https://hana.ondemand.com

    2. Select your tenant account which you would have created while creating cluster.

    3. Go to Connectivity > Destinations.

    4. Create new destination by selecting New Destination.

    5. Enter the details for Name, URL, User, Password and select Type as RFC.

    6. Add additional properties and enter required values as configured in cloud connector:

      • Jco.client.ashost

      • Jco.client.client

      • Jco.client.lang

      • Jco.client.sysnr

      • Jco.destination.pool_capacity (optional)



    7. Select Save.




 

Invoking HTTP endpoint using postman client


Now that you have successfully deployed the integration flow. You can invoke request-response method to retrieve data from ABAP system using RFC adapter.

In this demo, we have used the function module SXIDEMO_AIRL_FLIGHT_CHECKAVAIL to check the number of seats available for the flight for a specific date.

Refer to information on how to generate function module (XML/WSDL file) in the Prerequisite section.

Procedure





    • Invoke the HTTP request URL:
      https://<host:post>/http/IFlow name​


    • Set the method as POST. Provide the necessary inputs in the request body.

    • Use Basic Authorization as header.

    • Sample XML input format to be entered in HTTP Body:




<?xml version="1.0" encoding="UTF-8"?> <ns1:SXIDEMO_AIRL_FLIGHT_CHECKAVAIL xmlns:ns1="urn:sap-com:document:sap:rfc:functions"> <FLIGHT_KEY> <AIRLINEID>AA</AIRLINEID> <CONNECTID>0017</CONNECTID> <FLIGHTDATE>2017-05-01</FLIGHTDATE> </FLIGHT_KEY> </ns1:SXIDEMO_AIRL_FLIGHT_CHECKAVAIL>



Result: You can view the number of seat available for the flight on the specified date.
20 Comments