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: 

How to create Explicit enhancement points

vinod_vemuru2
Active Contributor
0 Kudos

Hi All,

I have checked many threads related to this topic. Still need some more clarification.

I know about implicit enhancement points and how to create them like in start and end places of FORM, FM, INCLUDE etc.

But what is explicit enhancement point, how to create them and what is the difference between implicit and explicit enhancement points. One difference could be implicit is SAP defined and explicit is user defined. Apart from this any other difference in the way they works or call happenings etc???

Thanks,

Vinod.

1 ACCEPTED SOLUTION

former_member226203
Active Contributor
0 Kudos

chk if this link helps.this has the info

https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/how%252bto%252bdo%252bexplicit%252benhanceme...

Edited by: Kalyan Chakravarthi on Feb 10, 2009 6:12 AM

5 REPLIES 5

former_member226203
Active Contributor
0 Kudos

chk if this link helps.this has the info

https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/how%252bto%252bdo%252bexplicit%252benhanceme...

Edited by: Kalyan Chakravarthi on Feb 10, 2009 6:12 AM

Former Member
0 Kudos

hi Vinod

See the wiki in SCN

[WIKI FOR ENHANCEMENTS|https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/the%252bnew%252benhancement%252bframework%252band%252bthe%252bnew%252bkernel-based%252bbadi]

Regards

Sachin

Former Member
0 Kudos

hi Vinod

See the wiki in SCN

[WIKI FOR ENHANCEMENTS|https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/the%252bnew%252benhancement%252bframework%252band%252bthe%252bnew%252bkernel-based%252bbadi]

Regards

Sachin

Former Member
0 Kudos

Hi,

[how to Create Explicit Enhancement Points |]

Former Member
0 Kudos

hi bro...

Explicit enhancement points are basically hooks already coded into the program by SAP

at various points of the code. See program RIAUFMVK for examples of these! These are

very easy to implement simply go into enhancement mode of SE80 and right click on the

enhancement point where you want to add your code and choose

u2018Enhancement Implementation->Createu2019 Give it a name, description and assign

it to a change request (should not be a Z package) and then simply add the code as normal.

Implicit enhancement points are basically points within ABAP code where an enhancement point

is implied, and in which case can be created. Examples of implicit enhancement points are at

the beginning and end of FORMu2019s, at the end of a program, include or function module etc.

In implicite points their call happen evenif they go for blank run

but not is the case with explicite one.

implicit is SAP defined and explicit is user defined

regards