What is the difference between Overloading and Overriding ? Which of them is possible in ABAP ?
Answer Posted / aseem
Overloading : Overloading is when we have 2 Methods in the same or derived class but have different parameters.
Overriding : When we re-implement the method of a super class in a derived class. Is possible via REDEFINITION keyword.
I'm not sure if the first one is possible in ABAP. Let me test it out repost the answer.
| Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
What are the sequences of event block?
What is an update type with reference to a match code id? : abap data dictionary
What is the significance of technical settings (specified while creating a table in the data dictionary)? : abap data dictionary
How do you write transaction programs in sap?
What are the differences between table and structure in data dictionary?
Exception handling and how does it transfer from called method to calling method?
what is difference between user exit, customer exit and badi?
Explain how is batch input process different from processing on line?
There is 1 person but it’s displaying that this person cannot be booked. He is not available for the business event. Can you tell me where is it going wrong? What can be the reasons? : sap abap hr
On ABAP, Did you set up a workflow? Are you familiar with all steps for setting up a workflow?
What is synchronous update?
How can we create callable modules of program code within one abap/4 program?
How can we access the correction and transport system?
How do you use structures in the abap programs?
I am trying to automate a manual processing of iDOCs in BD87. I used the following code to pass idoc-id to global variable 'DCN' and then skip the first screen of BD87 to go to processing directly. After running this code SET PARAMETER ID 'DCN' FIELD itabhdr-idoc_id. CALL TRANSACTION 'BD87' AND SKIP FIRST SCREEN. it takes me to the first screen because it cannot recognize my idoc-id. How I can pass idoc-id to global? I have used the above code to goto VA02 with VBELN and it worked perfectly.