Application Development 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: 

Where to start this new workflow

Former Member
0 Kudos
194

A developer creates a new abap program. Suppose I want to check if the developer followed the naming convention that we have, where should I start? We have workflow running, but I am new in this area.

I am sure it can be done. I am not sure how and where to intercept / catch the name of the new abap program. Any suggestions? Thanks very much.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
71

Hi there,

There is a userexit that can be utilised for this purpose.

It's name escapes me at the momment but we did this at my last place of work.

give me a while and I will find it for you.

Cheers

Colin

4 REPLIES 4

VXLozano
Active Contributor
0 Kudos
71

Run it, if you are using Windows GUI, you can use the menu System->Status and will display a window with all the info you are requiring, then use the transaction SE38 to read the code if you need to check its naming conventions too.

You can click in the info bar (down in your screen, a little icon) and you will see that info too.

Former Member
0 Kudos
72

Hi there,

There is a userexit that can be utilised for this purpose.

It's name escapes me at the momment but we did this at my last place of work.

give me a while and I will find it for you.

Cheers

Colin

0 Kudos
71

Hi Ger,

Run transaction SMOD to list SAP Enhancements

Search for all enhancements starting with SE*

You should see enhancement SEUED001 which can be used

Display the components of this enhancement.

The function module exit is called EXIT_SAPLS38E_001

Put your naming convention checks in there.

Please confirm this fixes your problem so I receive the relevant reward points

Thanks

Colin.

0 Kudos
71

This sure helped me a lot.

Thanks very much.