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: 

User Exits

Former Member
0 Kudos

Hi,

Can any one provide me with the material to step by step creation user exits(function module exits) in general.

Regards

Shiva

1 ACCEPTED SOLUTION

Former Member
0 Kudos

These threads have <b>many links and explanation</b> with some <b>code samples</b> all you need

<b>Additional Info:</b> Online Demo on Enhancement Frameworks

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/f0f67fff-0a01-0010-ec96-8bf8a90a9d...

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/074683ff-0a01-0010-2c96-efddde1ee7...

Hope this solve your problem.

Regards

Kathirvel

3 REPLIES 3

Former Member
0 Kudos

These threads have <b>many links and explanation</b> with some <b>code samples</b> all you need

<b>Additional Info:</b> Online Demo on Enhancement Frameworks

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/f0f67fff-0a01-0010-ec96-8bf8a90a9d...

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/074683ff-0a01-0010-2c96-efddde1ee7...

Hope this solve your problem.

Regards

Kathirvel

anversha_s
Active Contributor
0 Kudos

hi,

hi

USER EXITS->

1. Introduction:

User exits (Function module exits) are exits developed by SAP.

The exit is implementerd as a call to a functionmodule.

The code for the function module is writeen by the developer.

You are not writing the code directly in the function module,

but in the include that is implemented in the function module.

The naming standard of function modules for functionmodule exits is:

EXIT_<program name><3 digit suffix>

The call to a functionmodule exit is implemented as:

CALL CUSTOMER.-FUNCTION ❤️ digit suffix>

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

CUSTOMER EXITS-> t-code CMOD.

As of Release 4.6A SAP provides a new enhancement technique, the Business Add-Ins.

Among others, this enhancement technique has the advantage of

being based on a multi-level system landscape (SAP, country versions, IS solutions, partner,

customer, and so on)

instead of a two-level landscape (SAP, customer) as with the customer exits.

You can create definitions and implementations of business add-ins at any level of the system landscape.

To unify enhancements of the SAP Standard you can migrate customer exits to business add-ins.

http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm

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

http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec079f5db911d295ae0000e82de14a/frameset.htm

For information on Exits, check these links

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sapgenie.com/abap/code/abap26.htm

http://www.sap-img.com/abap/what-is-user-exits.htm

http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction

http://www.easymarketplace.de/userexit.php

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sappoint.com/abap/userexit.pdfUser-Exit

rgds

Anver