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

how to Create Explicit Enhancement Points

0 Likes
764

Hi Gurus,

What is an explicit enhancement point and how can we create or implement an explicit enhancement point.

Can any one give some step by Step document on enhancing a source code using Explicit enhancement points.

Kind Regards,

Abhi.

Hi Gurus,

What is an explicit enhancement point and how can we create or implement an explicit enhancement point.

Can any one give some step by Step document on enhancing a source code using Explicit enhancement points.

Kind Regards,

Abhi.

4 REPLIES 4
Read only

Former Member
0 Likes
674

Hi

U can create a explicit enhancement point(called enhancement spot)in SE18 and associate a BADI to it.

It means a BADI implementation and u can call the method in this BADI in ur program.

Refer this link:

<u>http://help.sap.com/saphelp_nw2004s/helpdata/en/91/f1e540f8648431e10000000a1550b0/content.htm</u>

Message was edited by:

Vasudha L

Message was edited by:

Vasudha L

Read only

Former Member
0 Likes
674

Hi,

I believe we cannot create a explicit enhancement point...

But can implement them..

Check this link for the help to implement

http://help.sap.com/saphelp_nw2004s/helpdata/en/5f/103a4280da9923e10000000a155106/content.htm

thanks

Naren

Read only

0 Likes
674

Hello,

Question: why do we determine where should we use an Implicit enhancement or an Explicit enhancement?

Question: How can we call a explicit enhancement point in a source code?

Kind Regards,

Abhi.

Read only

0 Likes
674

Hi

u can check this link

<u>https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bb54c452-0801-0010-0e84-a653307fc6fc</u>

Below is the code for calling explicit enhancement point;

REPORT z_badidemo.

DATA : inamt TYPE p,

hand TYPE REF TO z_badi_dem,

outamt TYPE p.

inamt = 20.

GET BADI hand.

CALL BADI hand->zmethod

exporting zin = inamt

importing zout = outamt.

WRITE outamt.

Thanks

Vasudha