Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

List all programs created by a specific user

Former Member
0 Likes
5,884

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.

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
3,185

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

2 REPLIES 2
Read only

RichHeilman
Developer Advocate
Developer Advocate
3,186

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

Read only

Former Member
3,185

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.