cancel
Showing results for 
Search instead for 
Did you mean: 

Transport Request Number range

ken_halvorsen2
Active Participant
0 Kudos

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

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

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 Kudos

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)