cancel
Showing results for 
Search instead for 
Did you mean: 

Spool request transport

Former Member
0 Kudos

HI,

Is there a way to transport spool requests from one system to another system? I tried table TST01  but transport of entries are disabled..

Regards,

VInay.

Accepted Solutions (0)

Answers (2)

Answers (2)

Reagan
Advisor
Advisor
0 Kudos

If they want the spool requests from the production to the test environment then refresh the test system.

Other than that the only option can think of is doing export and import of the tables using BRTools if this is an Oracle database. I am not sure how effective this is.

Regards

RB

former_member188883
Active Contributor
0 Kudos

Hi Vinay,

What is the need to transport spool request ?

If you really need spool data you can perform export of TST01 and import the same into target system.

This is how you do a export and import of table entries.

Export:

Open Notepad and type the following,

export

client = 020

file = 'clone.export.<sid>.<client no>.data'

select * from <client_dependent_tablename1>

select * from <client_dependent_tablename2>

........................................

........................................

select * from <client_dependent_tablenamen>

Save the file as export.ctl

Run R3trans export.ctl

and the data of these files will be stored in a file called clone.export.<sid>.data in the directory from which you have called R3trans

Import:

Open Notepad,

import

client = 040

file = clone.export.<sid>.<client no>.data

buffersync = yes                                              

Save the file as import.ctl

Run R3trans import.ctl

Hope this helps.

Regards,

Deepak Kori

Former Member
0 Kudos

Hi Deepak,

Client wants it

By the way , If we import table itself in target system it will override earlier table in the target systems.

We need to import few entries [ 1 week ] into target system. Is there a way to do this from SAP System?

Regards,

VInay

former_member188883
Active Contributor
0 Kudos

Hi Vinay,

You can export and import selective entries as well using the option above.

Refine your selection parameter for the same.

It will not overwrite existing entries. It will append to existing table entries.

Regards,

Deepak Kori