How to check all objects belong to list of TR's in SAP system

SAP

SAP provides standard tables that you can use to get details about transport objects in the Change and Transport System (CTS). These tables contain comprehensive information about transport requests and their associated objects.

Standard SAP Transport Tables

The following tables are essential for tracking transport objects ?

  • E070 ? Change & Transport System: Header of Requests/Tasks
  • E070T ? Change & Transport System: Short Texts for Requests/Tasks
  • E071 ? Change & Transport System: Object Entries of Requests/Tasks (provides details of transport objects)
  • E070A ? Change & Transport System: Attributes of a Request
  • E070C ? CTS: Source/Target Client of Requests/Tasks

Accessing Transport Object Information

To view transport objects, follow these steps ?

  1. Use transaction code SE11 to open the ABAP Dictionary
  2. Enter table E071 in the Database table field
  3. Execute the table to view its contents
  4. In the result screen, group the data by PGMID (Program ID), OBJECT (Object Type), and OBJ_NAME (Object Name) for better organization

Example Query Structure

When querying table E071, you can use the following key fields ?

SELECT TRKORR, PGMID, OBJECT, OBJ_NAME, OBJFUNC
FROM E071
WHERE TRKORR IN ('TR001', 'TR002', 'TR003')
ORDER BY TRKORR, PGMID, OBJECT, OBJ_NAME

The PGMID field indicates the application area (R3TR for Repository objects, LANG for language-dependent objects), OBJECT shows the object type (PROG for programs, TABL for tables), and OBJ_NAME contains the actual object name.

Conclusion

Using SAP's standard transport tables, particularly E071, allows you to efficiently track and verify all objects belonging to specific transport requests, providing complete visibility into your transport landscape.

Updated on: 2026-03-13T19:12:39+05:30

7K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements