cancel
Showing results for 
Search instead for 
Did you mean: 

Transport Request Issue

Former Member
0 Kudos

Dears,

I released one request from DEV and as we know its cofile and datafile get created now mistakenly these cofile and datafile delet wanted from trans directory.Now I want to import this request into QAS with same transport request number.

Please suggest how can I do this.

Shivam

Accepted Solutions (1)

Accepted Solutions (1)

former_member204746
Active Contributor
0 Kudos

you can re-export it:

tp export DEVK912345 client=999 -s DEV

Former Member
0 Kudos

Dear Eric,

Thanks,

Can we perform it from SAP GUI also means by anytcode STMS,SE01....

Please suggest.

Shivam

markus_doehr2
Active Contributor
0 Kudos

Yes - you can do that also from SAPGUI:

- start STMS

- open your Queue

- use the menue to "Extras - other requests - add"

- add the transport and set the checkbox "import again"

Markus

Former Member
0 Kudos

Dear Markus,

I think this process is used when we have cofile and datafile but issue is these have been deleted.

Shivam

markus_doehr2
Active Contributor
0 Kudos

Don´t know what you mean but effectively this is the same as you do when you use the tp command given.

Markus

Former Member
0 Kudos

Hi Markus,

My issue is

I released one request from DEV and as we know its cofile and datafile get created.Now mistakenly these cofile and datafile deleted from trans directory.Now I want to import this request into QAS with same transport request number.

Please suggest.

Shivam

markus_doehr2
Active Contributor
0 Kudos

Ok.

You can use the following program to reset the status in the DEV system and release the transport again:

REPORT ZZAKTRUP.

* remark
PARAMETERS: TRAUFTRG(10) TYPE C.
parameters: status like e070-trstatus default 'D'.
PARAMETERS: TEST(1) TYPE C DEFAULT 'X'.
TABLES: E070.

SELECT * FROM E070 WHERE TRKORR = TRAUFTRG.
   WRITE: / E070-TRKORR,  E070-TRSTATUS.
   IF TEST = ' '.
    MOVE status TO E070-TRSTATUS.
    WRITE: / E070-TRKORR,  E070-TRSTATUS.
    UPDATE E070.
   ENDIF.
ENDSELECT.

Markus

Former Member
0 Kudos

Hi Markus,

one Last Question,Where I have to put transport request number in this programme.

And is there any entry in table E070 which if I delete,I will be able to import the request again.

Shivam

markus_doehr2
Active Contributor
0 Kudos

The program has a parameter field where you give the transport number.

Do not delete things out of E071*, just set the status of the transport request.

Markus

Former Member
0 Kudos

Means

PARAMETERS

: TRAUFTRG(10) TYPE C.

parameters

: status like e070-trstatus default 'D'.

PARAMETERS

: TEST(1) TYPE C DEFAULT 'X.

We have to replace this by transport request.

Please make me correct.

Shivam

markus_doehr2
Active Contributor
0 Kudos

If you execute the program it will give you a field where you can enter the transport request. No need to "hard code" anything.

Markus

Answers (1)

Answers (1)

Former Member
0 Kudos

Shivam - were u able to retrieve the deleted cofiles/ data files ?? i guess if u have deleted the files at the unix level then u can't retrieve it.