2007 Nov 02 5:50 AM
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.
2007 Nov 02 5:54 AM
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
2007 Nov 02 5:55 AM
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
2007 Nov 02 6:11 AM
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.
2007 Nov 02 8:46 AM
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
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |