Is Multiple Inheritance possible in ABAP ?
If Yes How ,If no How ?
Answers were Sorted based on User's Feedback
Answer / kumar gaurav
no,multiple inheritance is not possible in abap.because
suppose we inherit two classes in your class.Suppose we
have two classes A and B and both having method m with same
signature and different implementation.Now we inherit these
two classes in your Class C.Now when you create object of
class c and try to access the m method then there is
cofusion for which method to be called either of class A or
class B.i.e. there is a conflict in method selection.This
problem can be overcome with conceopt of interfaces.
Is This Answer Correct ? | 14 Yes | 1 No |
Answer / sumanthpachika
No.multiple inheritance in ABAP is not possible.
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / sudhish rath
In ABAP a subclass do not have multiple parrents.
Is This Answer Correct ? | 1 Yes | 1 No |
wat is the difference between A-gate & W-gate?where are they used?
In which cluster time results are stored
what are performence analysis techniques?
What are the ABAP commands that link to a layout set?
What are the data types of internal tables?
for uploading master data(ex:customer data) into sap, which methods you prefer? call transaction/session/lsmw/bapi? why?
What is the difference between value table and check table?
how to debug background jobs?
Why do we require Infotypes for HR module
How do you display a data in a detail list?
Without writing the event start-of-selection we can execute a report program.Then what's the purpose of writing it?
In BDC,i have 3 transaction and one flat file with data for all those 3 transaction requires........i want to process these 3 transaction at a time using that single flat file,if 3rd transaction fails to upload the record,can we roll back the remaining 2 transaction or we can't?Is it possible in BDC,How?