cancel
Showing results for 
Search instead for 
Did you mean: 

How to determine the RFC type

AJeB
Participant
0 Kudos
181

Hello, how to determine the RFC type currently used in the system if it is Asynchronous, Synchronous, etc. Which tcode should i check?

Accepted Solutions (1)

Accepted Solutions (1)

Ulrich_Schmidt
Product and Topic Expert
Product and Topic Expert

All RFC types are "currently used in the system". In order to find out, which type each single one is, you would have to look at the location in the ABAP code, where each call is triggered. E.g.

  • CALL FUNCTION ...  --> synchronous
  • CALL FUNCTION ... IN BACKGROUND TASK  --> transactional
  • CALL FUNCTION ... STARTING NEW TASK  --> asynchronous
  • A function call using the BG_RFC ABAP classes  --> bgRFC

Only currently executing calls of type qRFC and bgRFC can be monitored in a transaction: SMQ1 & SMQ2 for outbound & inbound qRFC, and SBGRFCMON for bgRFC.

AJeB
Participant
0 Kudos
thanks for the information

Answers (0)