‎2006 Nov 06 6:37 AM
Hi Experts,
How can we find, my local objects ($temp) which are created under my id.
Thanks in advance
Rams
‎2006 Nov 06 6:40 AM
Log in the system with your username. Go to se 80 and use package as $tmp you will get a list of all local objects that you have created. From that you can find out what all objects that you need.
Best Regards,
Vibha
*Please mark all the helpful answers
‎2006 Nov 06 6:38 AM
goto se80
give user name under local object interface
regards,
vijay
‎2006 Nov 06 6:40 AM
Log in the system with your username. Go to se 80 and use package as $tmp you will get a list of all local objects that you have created. From that you can find out what all objects that you need.
Best Regards,
Vibha
*Please mark all the helpful answers
‎2006 Nov 06 6:41 AM
hi,
Go to se80 transaction.
Choose Local Objects from the list box.
Give the user Id in the field below it.
Say display.
YOu would get all the local objects created by that user
<i><b>Another method.</b></i>
For local objects created by user goto TADIR table,
data: i_tadir type standard table of tadir.
Select * from tadir into table where OBJ_NAME like 'Y%'
and AUTHOR eq <User-Name>.
You will get all the local object created by a particular user.
For getting the Transport request created by a particular user:
Data: i_E070 type standard table of E070.
Select * from E070 into table E070 where AS4USER = <User-name>.
Regards
Anver
<b><i>
if hlped pls mark points</i></b>