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

USER EXITS + Search and implementi

Former Member
0 Likes
489

Hi Gentlemen!!, I wonder how can I search User Exits inside a Standard Program and implement it!!.

I must define a Project at the CMOD transaction like as the module function on Customer Exits?

Or just put the code inside the FORM of the User EXITS?

I'm asking to you because I can't find an example of an User Exits.

Thanks for your Help,

Regards,

POLAK.-

Hi Gentlemen!!, I wonder how can I search User Exits inside a Standard Program and implement it!!.

I must define a Project at the CMOD transaction like as the module function on Customer Exits?

Or just put the code inside the FORM of the User EXITS?

I'm asking to you because I can't find an example of an User Exits.

Thanks for your Help,

Regards,

POLAK.-

3 REPLIES 3
Read only

Former Member
0 Likes
468

hi,

Determination of User Exits ..

Give the transaction name in the SE93 and get the program name .... from SE38 get the package name/development class of that program which you find it in attributes ... Pass the package name in SE84 ... Enhancements->Customer Exits --- and execute which displays all the exits pertaining to that exit...

Implementation of User Exit

Take the suitable exit and go to SE37 and double click on the include to create it and write the required code in it ...

Activation

Assign the enhancement to a prject via CMOD and activate the project to make the code given in the include to function ...

Regards,

Santosh

Read only

Former Member
Read only

Former Member
0 Likes
468

Hi Polakinho ,

User exits are actually empty subroutines that SAP developers provide for you. You can fill them with your own source code.

The original purpose of user exits was to allow the user to avoid modification adjustment.

The SAP developer creates a special include in a module pool. These includes contain one or more subroutines routines that satisfy the naming convention userexit_<name>.

&#61656;The calls for these subroutines have already been implemented in the R/3 program.

&#61656;Usually global variables are used.

To find the user exits for a particular transaction say VA01 go to the transaction VA01

goto system -> status

double click on the program name

u go to the SAP module pool program of the tcode VA01

go to find button and write the string USEREXIT

it displays the list of avaliable user exits for this transactions.

Based on the short descriptions provided select the required exit.

There is no need to add these exits in any project.Since technically these exits are considered modifications.

All you need is an access key to place any code in that form

Revert back for any further clarifications.

Hope its useful. Reward points if useful.

Thanks ,

Surya Pydikondala.