cancel
Showing results for 
Search instead for 
Did you mean: 

How to export Tabel? (Exporting and Importing of RFCDES table)

Former Member
0 Kudos

Hi,

We are doing system Refresh on qualitysystem,

I want to export the Tables and reimport them after system refresh

Tables like: RFCDES

How can export this table ?

How to import the table?

It is very urgent, Please give me the solution as soon as possible

Note: we are using BRTOOLS

Points awarded

Regards,

Ravi

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Kumar,

Can we export tables from GUI level or from BRTOOLS ?

Regards,

Ravi

Former Member
0 Kudos

Hi Ravi,

Create a control file like "rfcdes_export.ctl"

export

file '/usr/sap/data/export_rfc.dat’

delete from rfcdes

select * from rfcdes

Take the export :

R3trans -w rfcdes_export.log rfcdes_export.ctl

Create the control file "rfc_import.ctl"

import

file '/usr/sap/data/export_rfc.dat'

Import it:

R3trans -w rfc_import.log -u 1268 rfc_import.ctl

Hope it will help you.

Best Wishes.

Kumar