2012 Mar 05 12:00 PM
Hi All,
is there any posibillity to find out what is the source server of an RFC function call inside the FM and if it's an qRFC what is the queue name.
Thanks Thomas
2012 Mar 05 1:14 PM
Hi,
During RFC check Tcode : SM58 , SMQ1 and SMQ2.
Regards,
Aravind.
2012 Mar 05 1:14 PM
Hi,
During RFC check Tcode : SM58 , SMQ1 and SMQ2.
Regards,
Aravind.
2012 Mar 05 1:18 PM
Hi Aravind,
thanks for your reply. It's my fault, but I mean inside a FM on ABAP level. Meanwhile I found a FM called 'TRFC_RECEIVER_INFO'. This module deliver some infos i need, but it works only for qRFC calls.
Thomas
2012 Mar 05 3:37 PM
For the non-qRFC scenario you may want to try:
CALL FUNCTION 'RFC_SYSTEM_INFO' DESTINATION 'BACK'
IMPORTING
rfcsi_export = rfcsi_export
rfc_login_complete = rfc_login_complete
dialog_user_type = dialog_user_type
current_resources = current_resources
maximal_resources = maximal_resources
recommended_delay = recommended_delay
EXCEPTIONS
communication_failure = 1 MESSAGE dest_communication_message
system_failure = 2 MESSAGE dest_system_message.
The RFCSI_EXPORT parameter will give you a few details of the calling system (host, sysid, etc...).
2012 Mar 05 3:39 PM