How To Modify CTS Transport Number Range (ABAP)
How To Modify CTS Transport Number Range (ABAP)
How To Modify CTS Transport Number Range (ABAP)
Symptom
Change transport request number range after system copy.
Change transport request number range after restoring system.
Change transport request number range if two systems running in parallel with same <SID> during upgrade.
Environment
SAP NetWeaver release independent.
Cause
Transport request number range overlaps.
Resolution
The only way to modify the transport request number range is to change the value of field TRKORR of table E070L.
The transport request numbers will continue to increment from the number entered in this field.
You can write an ABAP program and execute it from ABAP level. Or you can also do it from the database level.
Be aware that number range of customer transport requests start with "<SID>K9". (Anything else is reserved for SAP.)
You can use the following example SQL statement to update E070L from DB level.
update <schema>.E070L set TRKORR = '<SID>K9*';
The schema can be checked from the menu System -> Status when you logon to the system via SAPGUI.
The value '<SID>K9*' is your new number range, like <SID>K902000, replacing <SID> with the real SID.
Please refer to SAP Note 106911 which describes number ranges for the transport system.
If you define only a TRKORR in E070L, there is a check, which searches for request IDs (E070) in the number range >
TRKORR. If a request is found, the new TRKORR in E070L is the request ID + 1.
If you define a TRKORR_HI, only requests in the range between TRKORR and TRKORR_HI are searched. If there is no
request found, the number range is OK. (This can benefit if you previously used a number range but wish to go back to a
lower number range, because, without TRKORR_HI the check would only allow you to use a higher number range.)
Below is an example SQL statement.
update <schema>.E070L set TRKORR_HI = '<SID>K9*';
The value '<SID>K9*' is higher than the value of TRKORR.
See Also
Should you wish to change the number range for non-ABAP transports (CTS+), please review SAP Note 1463377.
Should you wish to change the number range for the CTS Project, please change the value of field PROJECT of table
E070L.
Keywords
<TR>, TR, E070L, Number Range, Modify, Overlap, Project Number
Attributes
Key Value
2259615 SV-SMG-CM ChaRM/QGM: Correct Procedure of Refreshing a System Managed by a SAP Solution Manager
System
Attachments
File Name File Size Mime Type
E070L.png 48 image/x-png