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: 

Explicit Enhancements

Former Member
0 Kudos

Dear All ,

I am working on enhancements , and has worked on implicit enhancements , screen enhancements , User exits . However I have never worked on explicit enhancements . I know that in any standard code they are placed at a certain position by the ABAP keyword ENHANCEMENT-POINT point_1 SPOTS spot_1 .

And as soon as I double click on the spot name the system directs me to the screen where I can select the spot and press the abap button and the code which is getting triggered at that location of the code . Now my question is can I change that code . Or can I create a new source code plug-in apart from implicit enhancements .

What I think that we cannot create a new enhancement point because it is the point which is already decided by standard SAP code , but we can create a new spot ( But I think this can only be of Type BAdI ) .

Thanks ,

Suvana Smith

1 ACCEPTED SOLUTION

madhu_vadlamani
Active Contributor
0 Kudos

Hi Smith,

Just go through this link http://wiki.sdn.sap.com/wiki/display/ABAP/How+to+do+Explicit+Enhancement.There is a good documentation in helps.sap.com just go through it.

Regards,

Madhu.

3 REPLIES 3

madhu_vadlamani
Active Contributor
0 Kudos

Hi Smith,

Just go through this link http://wiki.sdn.sap.com/wiki/display/ABAP/How+to+do+Explicit+Enhancement.There is a good documentation in helps.sap.com just go through it.

Regards,

Madhu.

former_member200345
Contributor
0 Kudos

Hi,

ENHANCEMENT-POINT point_1 SPOTS spot_1 .

In the above statement, POINT_1 is the Explicit Enhancement option. The statement 'ENHANCEMENT-POINT' defines Explicit Enhancement Option.

Keep the cursor on 'POINT_1' which the explicit enhancement option in your case--> right click and follow the below navigation to implement it.

Enhacement Implementation --> Create Implementation.

Hope this helps.

Regards,

Vijaymadhur.

0 Kudos

Thank You Very Much For your responses Vijaymadhu and Madhu Vadlamani .