Get Example source ABAP code based on a different SAP table
ABAP_RFC - Parameter Passing in sRFC and aRFC This example demonstrates parameter passing in two RFC variants.
ABAP_SOURCE_CODE DEMO CL_DEMO_RFC_PARAMETERS
ABAP_DESCRIPTION The function module DEMO_RFM_PARAMETERS >> is called using synchronous> and asynchronous> RFC.
In synchronous calls, parameters are passed and applied directly in the statement CALL FUNCTION>.
In asynchronous calls, parameters can only be passed in the statement CALL FUNCTION>. Parameters are applied using the statement RECEIVE>> in a callback routine. The statement WAIT FOR ASYNCHRONOUS TASKS>> is used to wait for this routine.