SAP ABAP system and you want to export and import ABAP RFC .
Export and Import the RFC at Operating System level using R3trans.
Steps
1. Create export script with following commands , we named this script as "rfc_backup".
export
file '/<dir>/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='/<dir>/rfc_data'
Before export the SAP RFC check the Script as below screen shot. Once we execute the export script using R3trans, it will export the RFC in the output file named "rfc_data".
3. Run following command at OS level : " R3trans rfc_backup"
4. Run following command at OS level : " R3trans rfc_restore"
5. After executing the R3trans RFC export/import script Check the trans.log - Log file will be created in current directory. One can verify the steps executed in trans.log.
EmoticonEmoticon
Note: only a member of this blog may post a comment.