cancel
Showing results for 
Search instead for 
Did you mean: 

how to retrieve the lost transport resuest

ashish_nagpal
Active Contributor
0 Kudos

hi all

while transporting the request to prduction system in CRM

i without definign the destination as production client ,released the requests

now is there any way that i can retrieve those requests so thst i can transport them to the production client

please tell me,any help will be appreciated

best regards

ashish

Accepted Solutions (1)

Accepted Solutions (1)

markus_doehr2
Active Contributor
0 Kudos

We have had that in the past too and we wrote a small ABAP program:


REPORT ZRESET_STATUS

* remark
PARAMETERS: TRAUFTRG(10) TYPE C DEFAULT 'T01K'.
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.

So basically you have to set the status of the transport request in table E070 to "D", then you can change the target and re-release.

Markus

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Nagpal,

In table E070E, you can change the status to unreleased and release it again.

I hope this is helpful.

Thanks,