Export and Import of SAP ABAP RFC using R3trans
Export and Import of SAP ABAP RFC using R3trans 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 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 : ” R3tran...