Requirment :You are using SAP ABAP system and you want to export and import ABAP RFC . You can export and Import the RFC at OS level using R3trans. Steps 1. Create export script with following commands , we named this script as "rfc_backup". export file '/home/abpadm/rfc_data' select * from RFCATTRIB select * from RFCDES select * from RFCSYSACL select * from RSECACHK select * from RSECACTB select * from RSECTAB 2. Create import/restore script with following commands ,we named it as "rfc_restore" import file='/home/abpadm/rfc_data' Please find below the screenshot of scripts content.Once we execute the export script using R3trans ,it will export the RFC in the output file named "rfc_data". ![]() 3. How to Export SAP ABAP RFC data using export script ? Enter following command at OS level : " R3trans rfc_backup" ![]() 4.How to Import SAP ABAP RFC data using import script ? Enter following command at OS level : " R3trans rfc_restore" ![]() trans.log - Log file will be created after executing R3trans <option> command, in current directory. One can verify the steps executed in trans.log. |