‎2010 Mar 26 7:45 AM
How can i know in which client RFC FUnction module is defined?
In one transaction , Becoz of RFC Functionmodule , the program is doing parrelal processing,
How can i make it serial processing?
Can i copy the RFC function into required to client?
Regards
Ramakrishna L
‎2010 Mar 26 8:16 AM
You can check in SM59 - Maintain RFC Destination tcode and there you can find the source and destination client ids.
‎2010 Mar 26 8:32 AM
Hi rama
use this
DATA: lt_siteselect TYPE TABLE OF siteselect INITIAL SIZE 0,
ls_siteselect TYPE siteselect,
ev_dest TYPE rfcdest.
CALL FUNCTION 'SMOF0_READ_SITESELECT'
TABLES
to_siteselect = lt_siteselect.
READ TABLE lt_siteselect INTO ls_siteselect
WITH KEY sitetypeid = cl_smw1_siteprovider=>c_sitetype_r3oltp.
ev_dest = ls_siteselect-rfcdest.
or this
r3rfcdest TYPE rfcdest.
r3rfcdest = cl_crm_erp_il=>get_rfc_destination( ).
regards
Marco
‎2010 Mar 28 3:43 PM