Hello
Check this SAP note
41475 - CC-INFO: Copying report variants between clients
- Copy variants between clients in different systems:
Create an export control file for R3trans with the following contents (the names of the control file and the data file are freely definable):
EXPORT
client = <source client>
file = '<data file>'
select * from VARI
select * from VARID
select * from VARIT
and additionally as of Release 4.0
select * from VARIS
select * from VARINUM
Log on as <sid1>adm (sid1 = name of the source system). (From the environment, R3trans determines the database to which it should connect. With the command R3trans -d, you can test whether the connection setup to the required system is successful. Look at the file trans.log.) The export is started with the command R3trans <export_control_file>.
The file trans.log and the data file entered in the control file are written.
Create an import control file with the following contents:
IMPORT
client = <target client>
file = '<data file>'
Log on as <sid2>adm (sid2 = name of the target system). Test -d with R3trans whether connection setup works out to the required target database. Start the import with the command
R3trans <import control file>.
(If the numbers of the source and target clients are the same, an import control file is not necessarily required. The import is then started with the command R3trans -i <data file>.
Also check this option.
Including variants to the transport request
Never tried so cannot guarantee,
Good Luck
RB