cancel
Showing results for 
Search instead for 
Did you mean: 

Import Queue Doesn't show transport requests

Former Member
0 Kudos

Hi,

Due certain conditions I have configured Domain Controller in Production, enabling transportation from Qa to Prod.

Initally Domain controller was in Dev.

Now I have deleted and re-configured TMS from Dev>Qa>Prod.

RSTPTEST is working fine, transport routes are fine...

but when i Login to Qa in t-code stms_import, the newly created tp is not traced and how can i get old transport

request. All the tp's can seen in E070 table.

Issues are:

1.) Newly Created Transport request are not shown in stms_import t-code in Qa

2.) How can i retrive all old tp's in Qa as well in Prod

Regards

Suresh

Edited by: kumarsk on Nov 25, 2009 4:03 PM

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

The queues show up for each system within the files in the buffers directory. You should have one of these for QAS and one for PRD. If your transports are missing, then check these files to see what the issue maybe (creating a backup of each one would be a good idea).

Hope that helps.

J. Haynes

Former Member
0 Kudos

Hi,

All files are in trans dir.... we have a common trans dir.....

I am able to see the file on production queue...but not in the Qa...

I have checked the dir where i can see all the old trans' requt files.

Regards

suresh

Former Member
0 Kudos

Hi,

Issue has been resolved.

Solution:

Have created the different transport group for Dev, Qa and Prod. And defined the transport directory as

//hostname/sapmnt/trans, on each server.....this is an common transport directory.

Regards

suresh

Former Member
0 Kudos

Hi,

hope your on Unix.

Try this, vi open a file call what you want, paste in the code. Make the changes for your system in BOLD

then create yourself a file of all tranports for the queue.

Run script <yourfile.txt

Go to buffer nd refresh.

#! /bin/ksh

#

SName=tp_buffer_sid_ # Script Name

#----


Purpose: -


  1. Populates sid buffer with list from input file

  2. To execute, as sidadm, cd /usr/sap/trans/bin, then tp_buffer_sid

#----


sid=sid

SID=sid

Clients="090"

Mode=u01236

#----


cd /usr/sap/trans/bin

  1. If a parameter was passed, then redirect the standard in to the passed file

  2. else prompt for the name of the transport.

#

if [ "$#" -gt 0 ]; then

if [ -f "$1" ]; then

echo File read is: $1

exec 0<$1

else

echo $1 is not a file!!

exit 15

fi

else

echo Please enter the transport number for $SID

  1. read transid junk

fi

while read transid; do

for Cln in $Clients

do

echo populate buffer entry $transid to $Cln

tp addtobuffer $transid $SID pf=TP_DOMAIN_SID.PFL client=$Cln $Mode

echo -


done

echo '>>>>>>>>>>>>>>>>>>>' buffer population for $transid finished

if [ "$#" = "0" ]; then break; fi

done

echo

echo ================== $SName finished ====================

Regrds

Mark

Former Member
0 Kudos

Hi Mark,

Database is on IBM-AIX and SAP is on windows

Should i try this...

Regards

Suresh

Former Member
0 Kudos

Hi,

I Have deleted TMS again and re-configured it, now i am able to view old transport request in production

but not in Quality..

I guess there should be a problem with tanspor group.......

Regards

suresh