cancel
Showing results for 
Search instead for 
Did you mean: 

Transport to All Clients in SAP

Former Member
0 Kudos

Hello,

We run on SAP R/3 4.7 and Oracle 10.2. We have 10 clients in one of our dev system. We get requests to transport to the Dev systems from anothere development system. I would like to know how we can transport one transport request to all the clients at one go.

Now we add the request to the import queue manually and transport one by one which is time consuming.

Waiting for response.

Thank you.

Regards

Siddhartha

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Create a transport target group toward all your target clients. Using the transport target group the transport is added to all the target import queues.

Former Member
0 Kudos

Hi,

Thanks for the reply,

As i said, The request comes from other transport landscape and not the same landscape. Hence cannot be given as a target group.

Thank you.

Former Member
0 Kudos

As per my understanding you are trying to import a Transport request to mulitiple clients on single system which is not part of your Transport system landscape.

This can be done only for Customizing (Client Dependent Transport) not with workbench (Client Indepent request).

For Client Dependent (Customizing) request you can try the following.

IF you are working on Windows plateform, make a tpt.bat file at dos level.

for example you want to transport TR. No. SPDK900415 to 400, 500 and 600 clents fo SMD systems. clients then file would be like this:

tp addtobuffer PF=/usr/sap/trans/bin/TPPARAM SPDK900415 SMD

tp import PF=/usr/sap/trans/bin/TPPARAM SPDK900415 SMD client = 400

tp import PF=/usr/sap/trans/bin/TPPARAM SPDK900415 SMD client =500

tp import PF=/usr/sap/trans/bin/TPPARAM SPDK900415 SMD client = 600

After saving the file try the command

> tpt.bat

Hope this will help you.

Thanks

Lokendra

Former Member
0 Kudos

Hello,

Always try to use standard SAP functionalities and try to prevent to use a mix of tp commands and STMS as SAP recommends.

What you can do is the following:

Import your requests in one client of your DEV system.

In the other clients schedule the following program on a regular base (example twice a day) :

RSCC_SCC1_BATCH

See also SAP Note :

[https://service.sap.com/sap/support/notes/645846|https://service.sap.com/sap/support/notes/645846]

You can also implement a small BADI implementation via SE18/SE19, this needs some ABAP coding.

Use BADI CTS_IMPORT_FEEDBACK

This BADI will be triggered when an import has been performed (example in 1 client of your DEV system).

With an implementation of this BADI you can forward the imported request to the other clients of your DEV system.

Wim