cancel
Showing results for 
Search instead for 
Did you mean: 

Transport Request Number range

03-11-2008 7:48 PM
ken_halvorsen2 Active Participant
1629 views 2 comments Go to solution
0 Likes
SAP Managed Tags
Subscribe

Hi All

I've created a new dev system for an upgrade project, but would like to start the Transport Requests off with a distinct number range.

Can anyone remind which table has the "Next Transport Request" number that I'll be able to set?

Ken

0 Likes

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Likes

You can change the entry for TRKORR in table E070L to give the transport numbers a new starting point.

That is what we do when setting up dual maintenance during an upgrade.

http://joeybear23.blogspot.com/

ashwani1
Explorer
0 Likes

Hi..

You can try to make program with this code.

data : wa_E070L type E070L.

wa_e070l-lastnum = 'TRKORR'.

WA_E070L-TRKORR = 'DEVK9xxxxx'

MODIFY E070L FROM WA_E070L.

Where DEVK9xxxxx is number range.

Thanks

Ashwani

Answers (0)