‎2006 Mar 18 3:43 AM
Hi all,
I am trying to find out all ABAP programs and BAPI that are created by a specific developer in our system. I have his login name on hand, does anyone know how can I do this?
Thanks,
Jockey.
‎2006 Mar 18 3:49 AM
Couple of ways to do this, for programs use SE38. In the program name field hit F4, click information system, click the "All Sections" icon, this will drop more fields for you selection, enter the name of the user in the author field, click green check icon.
You can do this same thing in SE37 for BAPIs/function modules.
Regards,
Rich Heilman
‎2006 Mar 18 3:49 AM
Couple of ways to do this, for programs use SE38. In the program name field hit F4, click information system, click the "All Sections" icon, this will drop more fields for you selection, enter the name of the user in the author field, click green check icon.
You can do this same thing in SE37 for BAPIs/function modules.
Regards,
Rich Heilman
‎2006 Mar 18 3:54 AM
Hi,
U can write a program for this.
Declare internal table.
Use below select...
select NAME from trdir into <int'table> where CNAM = <username>.
This is useful whenever u want to list down for various users.
Also, from SE38/SE37, press F4 & give the user name & it will list down the program names.