2004 Aug 25 11:42 AM
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.
2004 Aug 25 12:01 PM
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
2004 Aug 25 11:56 AM
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.
2004 Aug 25 12:01 PM
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
2004 Aug 26 7:50 AM
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.
2004 Aug 26 11:00 AM
This sure helped me a lot.
Thanks very much.