cancel
Showing results for 
Search instead for 
Did you mean: 

Version transport in Windows environment

Former Member
0 Kudos

Hi,

I need to export the versions of my development system. My environment is windows. I know the note 130906 but I am confused on how to do it from windows using R3trans command.

Please share your experience.

regards,

Vinodh.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member1351727
Active Participant
0 Kudos

Hi,

R3trans needs control file .

The control file is that which tells R3trans what to do.

We used to use this in user master export ot table export etc.

Command is some thing like this.

R3trans -w <logfile> <control file>

Logfile is the location where we want to see the R3trans log for this activity.This is our wish .We can use /tmp/table_export.log something like this.

Control file the actuall commands :

export

file='/tmp/usr02_table'

client=200

select * from usr02;

This will be the content of the control file.So what we want to do we need to specify there. file='/tmp/usr02_table' is the location where dump of this table will be kept.

Later as <sid>adm issue this command. R3trans -w <logfile> <control file>

For more go through this SAP Note 1942

Thanks.

Former Member
0 Kudos

Hi

Vinod

I never done using R3trans for transports, using tp is done,

because the tp calls inturn the R3trans.

to my point we had options

R3trans u2212d, checks whether it's possible to connect to the db.

The Interface Between tp and ABAP

R3trans u2212i <file>, imports directly the data from file without need of control file.

R3trans u2212t <control_file>, which performs the functions on test mode. Modifications are not written in the database.

R3trans u2212w <file>, which writes the transport log to the specified file. If none is specified, the default is trans.log in the current directory.

Regards

Bhaskar

Edited by: bhaskar1818 on Jul 25, 2008 11:05 AM