What is the difference between User Exits and BADI?
Answers were Sorted based on User's Feedback
Answer / vijay vasant wani
Making enhancements using the transactions SMOD/CMOD has
the following disadvantages:
1) This enhancement technique assumes a two-tiered system
infrastructure (SAP – customers).
2) The naming conventions in effect do not tolerate name
extension.
3) It can be called only once. i.e. A user exit can not be
assigned to more than one project.
Adavantages of BAdI
1) Fulfills the requirements of a system infrastructure
containing country versions, industry solutions, partners,
and customers.
2) Business Add-Ins should be considered generalized
Business Transaction Events that can be used to bundle
program, menu and screen enhancements into a single add-in.
3) Business Add-Ins can be created and employed in each of
the various software levels.
4) BAdI can be called namy times. i.e. BAdI implementation
can be assigned to more definations.
Is This Answer Correct ? | 53 Yes | 7 No |
Answer / abira
In user exits we go by general method for enhancements
while BADIs we use objects (oops concepts)
methods for enhancement
UserExits r used for adding additional functionality to the
existing SAP standard transactions.Using UserExits we can
add additional functionality standard SAP functionality
without making any changes to the original code.BADI is a
standardized interface for ABAP sources that enables
partners and customers to enhance SAP-delivered programs in
their namespace.
Is This Answer Correct ? | 39 Yes | 18 No |
Answer / jayaram reddy
user exits: User exits we can use in only one application.If
we want to use same exit in some other application, then you
should first deactivate and then use.
four types of eser exits:
1. menu exit
2.field exit
3.screen exit
4.function module exit
T.Codes: SMOD & CMOD
SMOD- To find the exit
CMOD- Implement the exit
Finding the exit: Using package
BADI: Multiple use
T. Codes: SE18 & SE19
Is This Answer Correct ? | 27 Yes | 8 No |
Answer / swamy
user exit:
1.this is clint dependent
2.this is procedural approch to work with enchancement.
3.this is two level infra structure like sap and customer
solution.
4.once you should the define the user exit you can assign
the any customer
5.using tcodes:comd & smod
6.user exit find out the through package goto tcode se93
and duble click the program and goto attributes and take
the package name and go to smod click on f4 and give the
package name and execute that then dispay the require user
exit and take the user exit and implement the in cmod
BADI's:
1.this is clint independent
2.this procedural approch to work with enchancement.
3.this is multilevel infrastructure like sap ,customer
solution as well as industriery solution.
4.this is a filter option
5.se18 define the inter face(when you are define the
interface it has a options like filter options and multipul
option)
6.se19 implement the badi
7.find out the badi through:se15 ,se84,
Is This Answer Correct ? | 17 Yes | 14 No |
Answer / rajashekar
badi is nothing but adding the some additional functionality
to existing badi with out any desturb existing functionality
Is This Answer Correct ? | 7 Yes | 5 No |
What is sequence of event triggered in report?
If i wont like to change the standard print program where i copied standard script to customer namespace,in this case is it possible to retreive the data if u connect the script with standard program.if yes how?if no why? Is it possible to print the logo in first page only,where the form consists of 10 pages.How can u do this? How can u set a table format where it cosists of fields like cust no, custname, amount ...in a script? How do u know that the particular BADI is suitable for the existed report.How do u findout this?When do u opt for BADI OR USEREXIT?did functional people tell u to adopt BADI or USEREXIT? What is the difference between SY-INDEX & SY-TABIX ? I have a report with fields Status,time & date. the contents it consists are Status Time Date AAA 01:20:15 05-06-10 AAA 11:02:32 O3-06-10 AAA 23:11:00 05-06-10 AAA 09:14:46 05-06-10 HOW DO U WRITE A CODE TO DISLAY A ROW WHICH WAS RECENTLY EXECUTED?( for this question it should display AAA 23:11:00 05-06-10 AS Output)
How you prepare documentation?
Can we use same Domain for more than Data element?
Name the abap/4 modularization techniques?
what precautions or prerequisites do you follow to update a record into database table and how
Is it possible to include two transactions with one group name in one program in session method ?
How many sections main window cab be divided in Script?
What are the types of data types in the sap abap?
What are the objects of the abap dictionary or what types of objects can be created in the abap dictionary? : abap data dictionary
WHAT IS THE PURPOSE OF SPLIT COMMAND?
What is the difference between get and get late?