How to Check RFC Connection using Function Module RFC_PING before Calling RFC Function Module
How to Check RFC Connection using Function Module RFC_PING before Calling RFC Function Module RFC part in SAP ABAP is may be some what confused ,but learn How to validate RFC connection in SAP?,Validating RFC destination before calling RFC function module, check RFC connection using Function module RFC_PING In ABAP programming, some times we may need to validate and check RFC Destination before calling a function module, you can find useful information in this tutorial. Required validations for RFC: Check if RFC destination is available or not. Check RFC destination connection is working or not. Example programm to validate RFC destination All the RFC destinations are stored in table RFCDES, we can check connection using function module RFC_PING (When ever you call and RFC, it will automatically validate connection, if you need to validate explicitly you can use this function module). REPORT ZSRI_CHECK_RFC. DATA : WA_DES TYPE RFCDES. PARAMETERS P_RFC TYPE STRING. ...