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: 

regarding an include program

Former Member
0 Kudos

I have an include program which is for user modification.

But how can i modify it without access key.

The comment in include is

************************************************************************

  • *

  • This include is reserved for user modifications *

  • *

  • Forms for sales document processing *

  • *

  • The name of modification modules should begin with 'ZZ'. *

  • *

************************************************************************

how to write my code in this without access key.

Thanks in advance

5 REPLIES 5

Former Member
0 Kudos

Hi!

You have to register it. You cannot modify this user exit without SSCR registration.

Regards

Tamá

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Since it resides in the SAP namespace, you still have to register it and get an access key. There is no way around this. If you are on ECC 6.0, you could use the enhancement framework to modify this include without an access key.

Regards,

Rich Heilman

0 Kudos

then wats the use of this include why they have given this.

wats the alternative process

Thanks

0 Kudos

This include is provided for you to add your own modules into. This include is included in the main program of your module pool, therefore your modules in the user exit can be accessed by the screen flow logic of your custom screen. This is the purpose, but SAP wants to know about it, so this is why you need to register the object. By doing so, you are marking this include as being modified and when it is time to upgrade, if SAP has changed the implementation of the user exit, you will be notified accordingly. Is there some problem with registering the object and getting an access key?

Regards,

RIch Heilman

0 Kudos

This include is for user modification but in SAP namespace. This means that you have to register it and get an access key before modifying it. "For user modification" means that all the changes that you do in this include are upgrade safe. if you just modify any standard SAP program, it might not work when new patches are added to SAP, but this include is different SAP will not change the implementation

- kalyan