Display Local Objects List of SAP User from ABAP Table
SAP programmers can get local objects list from ABAP table TADIR Directory of Repository Objects by filtering DEVCLASS package field and AUTHOR Person Responsible for a Repository Object fields. Filtering on TADIR table enables SAP users to get the list of their own local ABAP objects created on that SAP system easily.
Using SE11 ABAP Dictionary transaction, type TADIR in database table name input field.
Then display the ABAP transaparent table TADIR, Directory of Repository Objects which keeps an entry for all ABAP repository objects in the SAP system.
Display the contents of the TADIR table with Ctrl+Shift+F10 shortcut or by pressing the Contents command icon
Type your SAP user name in Author field in filter screen. And as DevClass package filter criteria type $TMP to list local ABAP repository objects.
Execute the query for the final list of local objects for the selected user pressing F8 shortcut key or Execute icon
Here is ABAP codes to select list of local ABAP objects for the current SAP users from TADIR table.