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

enhacements

Former Member
0 Likes
855

Moved to correct forum by moderator. In future please use a meaningful subject for your questions.

hi

how to find the all activated or used enhacements in sap

actually we have one table modsap or modact which is giving all the available enchacements in sap

but we need only implemented enhacements, how to find those activated or implemented enhacements.

thanks

neerathi

Edited by: Matt on Dec 3, 2008 11:24 AM

Moved to correct forum by moderator. In future please use a meaningful subject for your questions.

hi

how to find the all activated or used enhacements in sap

actually we have one table modsap or modact which is giving all the available enchacements in sap

but we need only implemented enhacements, how to find those activated or implemented enhacements.

thanks

neerathi

Edited by: Matt on Dec 3, 2008 11:24 AM

5 REPLIES 5
Read only

Former Member
0 Likes
830

Hi,

user the table MODATTR and field STATUS as 'A' for all the active Enhancements.

Thanks

Raj

Read only

Former Member
0 Likes
830

Hi,

Check tables:

MODSAP : SAP Enhancements

MODSAPT : SAP Enhancements Texts

MODSAPA : Attributes of SAP Extensions

In tcode:CMOD, from menu Utilities->SAP Enhancements->Exit Name->* and execute then you will get all enhancements in SAP.

Structure: LIST_XE List structure for enhancements

Check tcode SE19 for BADI

Edited by: Neenu Jose on Dec 3, 2008 5:33 AM

Read only

0 Likes
830

Hi,

from CMOD it give the list of all exits , just not Active implementations alone.

Raj

Read only

GauthamV
Active Contributor
0 Likes
830

hi,

open TADIR table.

give object type as CMOD for exits and SXCI for badis

and give program name as Y* and Z* and execute.

you will get all badis and exits implemented in system.

Read only

Former Member
0 Likes
830

thanks