2006 May 29 7:52 AM
2006 May 29 7:55 AM
Hi,
Check this....
http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
Regards
Vijay
Hi,
Check this....
http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
Regards
Vijay
2006 May 29 7:55 AM
Hi,
Check this....
http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm
Regards
Vijay
2006 May 29 7:55 AM
Hi swaminathan,
EXITS : they are for the purpose
of calling customer abap code,
from standard transaction,
at specific points (eg. while showing
default values on screen, while saving,
while validations, etc)
1. Previously there were only user-exits.
2. Then came the concept of customer-exits.
3.
user exits were nothing but
subroutines
FORM/PERFORM
called from standard programs.
4. The FORM defintion was placed inside
an empty include file.
5. So It was called EVERYTIME.
and we need to MODIFY/REPAIR the
standard include .
6. Then it came with concept of customer-exit
7. It consists of calling a FUNCTION MODULE,
which is called only if
the user-exit is ACTIVATED (other wise not called)
In this case, the code in put inside
a pre-defined Z include.
*----
8. Functionality of both is same, howerver
we can note the following important differences
a) Customer exit is called only if activated.
(hence, it does not waste resources)
b) in customer exit, REPAIR does not happen
to the standard include.
regards,
amit m.
2006 May 29 8:10 AM
Hi,
Customer exits are provided to the customer in the form of Function Module which holds the include in the customer namespace.The user can add his/her own source code in it.This is technically an enhancement.Eg for customer exits are Function module exits,Menu Exits,Screen Exits.
rgds,
latheesh
2006 May 29 8:32 AM
Hi Swaminathan,
1.CUSTOMER EXITS are FUNCTIONS so they are called using CALL FUNCTION (or more exactly CALL CUSTOMER FUNCTION).
Inside a function (customer exit) you can only acces your import/export/changing/tables parameters.
2.There are more restrictions on customer exits but you are sure it will never lead to inconsistency even if you make changes to any parameters
3.In customer-exit we have function-module exit , screen exit , menu exit.
4.Are available for MM,SD,FI,HR ..i.e designed for all modules.
5.Here in case of customer exits there is no need of access key.
6.During any upgradation Customer-exits are not wiped out.
Thanks & Regards,
Pawan P. Khilari
<b>*Mark Useful Answers</b>
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |