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

Implement ENHANCEMENT -POINTS and SECTIONS in own ABAP programs

Former Member
0 Likes
550

Hello,

is it possible to use ENHANCEMENT-POINTS and SECTIONS in own ABAP-Programs?

We develop some products for our customers. Sometimes a customer needs to enhance/change our code.

So my question is if we can use ENHANCEMENT -POINTS and SECTIONS in our own programs to give a customer the possibility to change/enhance our code.

I have tested this in a small program. My problem was that we could not create our own spots in our own package. It seems that a spot could only be created in SAP packages (Message: Object can only be created in SAP package)

For example we want to do the following:

ENHANCEMENT-SECTION TEST_EH_Section1 spots TEST_EH.

end-ENHANCEMENT-SECTION.

If we do so we have to register the object R3TR / ENHS / TEST_EH at SAP that means we need an Access key from SAP.

So it seems to us that it is not possible to use ENHANCEMENT-POINTS and SECTIONS in own programs because it is necessary to register the ENHS at SAP and to use SAP packages.

So we are looking for a solution that we can deploy to our customers.

Thanks

Hello,

is it possible to use ENHANCEMENT-POINTS and SECTIONS in own ABAP-Programs?

We develop some products for our customers. Sometimes a customer needs to enhance/change our code.

So my question is if we can use ENHANCEMENT -POINTS and SECTIONS in our own programs to give a customer the possibility to change/enhance our code.

I have tested this in a small program. My problem was that we could not create our own spots in our own package. It seems that a spot could only be created in SAP packages (Message: Object can only be created in SAP package)

For example we want to do the following:

ENHANCEMENT-SECTION TEST_EH_Section1 spots TEST_EH.

end-ENHANCEMENT-SECTION.

If we do so we have to register the object R3TR / ENHS / TEST_EH at SAP that means we need an Access key from SAP.

So it seems to us that it is not possible to use ENHANCEMENT-POINTS and SECTIONS in own programs because it is necessary to register the ENHS at SAP and to use SAP packages.

So we are looking for a solution that we can deploy to our customers.

Thanks

2 REPLIES 2
Read only

Former Member
0 Likes
479

Hello Arnfried Doetsch ,

you should try like this ,but i'm not sure.



ENHANCEMENT-SECTION YTEST_EH_Section1 spots YTEST_EH.

end-ENHANCEMENT-SECTION.

regards

Prabhu

Read only

Former Member
0 Likes
479

Yes you are right.

I have to use customer namespace for section/point and spot name.