SAP ABAP Interview Questions Part 1
SAP ABAP Interview Questions Part 1
Let’s make this list count and add some value to everyone.
All the best for your interview preparation . - Here you go!!
Important
Question 1: What is the difference between User Exit and Function Exit?
The way SMARTFORM is developed and the way in which SCRIPT is developed is entirely different.
Not listing down those here. That would be too much.
Question 4:What is the difference between Call Transaction Method and the Session method ?
http://sap-interview-questions-and-answers.blogspot.in/2012/07/abap-interview-questions.html 2/20
3/6/2016 SAP ABAP Interview Questions Part 1
Errors are automatically handled during the Errors should be handled in the batch input
processing of the batch input session. program.
BAPI BDC
BAPI is faster than BDC. BDC is relatively slower than BAPI.
BAPI directly updates database. BDC goes through all the screens as a normal
user would do and hence it is slower.
No such processing options are available in Background and Foreground processing
BAPI. options are available for BDC.
BAPI would generally used for small data BDCs would be preferred for large volumes
uploads. of data upload since background processing
option is available.
For processing errors, the Return Errors can be processed in SM35 for session
Parameters for BAPI should be used.This method and in the batch input program for
parameter returns exception messages or Call Transaction method.
success messages to the calling program.
Macro Subroutine
Macro can be called only in the program it is Subroutine can be called from other programs
defined. also.
Macro can have maximum 9 parameters. Can have any number of parameters.
Macro can be called only after its definition. This is not true for Subroutine.
A macro is defined inside: Subroutine is defined inside:
DEFINE … FORM …..
…. …..
END-OF-DEFINITION. ENDFORM.
Macro is used when same thing is to be done Subroutine is used for modularization.
in a program a number of times.
Question 7: What is the difference between SAP memory and ABAP memory?
http://sap-interview-questions-and-answers.blogspot.in/2012/07/abap-interview-questions.html 3/20
3/6/2016 SAP ABAP Interview Questions Part 1
What does this mean?ÆThe data stored in Specific.What does this mean?Æ The data
SAP memory can be accesses via any session stored in ABAP memory can be accessed only
from a terminal. in one session. If you are creating another
session, you cannot use ABAP memory.
Important
Question 8: What is the difference between AT SELECTION-SCREEN and AT SELECTION-SCREEN
OUTPUT?
AT SELECTION-SCREEN is the PAI of the selection screen whereas
AT SELECTION-SCREEN OUTPUT is the PBO of the selection screen.
Question 10: What is the difference between VIEW and a TABLE?A table physically stores data.
A view does not store any data on its own. It can contain data from multiple tables and it just
accesses/reads data from those tables.
Question 11: What is the difference between Customizing and Workbench request?A
workbench request is client independent whereas a Customizing request is client dependent.
Changes to development objects such as Reports, Function Modules, Data Dictionary objects etc. fall
under Workbench requests.
Changes in SPRO / IMG that define system behavior fall under customizing requests.
An example would be ‘defining number ranges’ in SPRO.
In short, generally a developer would end up creating a Workbench request and a Functional
Consultant would create a Customizing request.
[http://2.bp.blogspot.com/-
http://sap-interview-questions-and-answers.blogspot.in/2012/07/abap-interview-questions.html 4/20
3/6/2016 SAP ABAP Interview Questions Part 1
VPCruOTgcl4/T_dGBAuZMGI/AAAAAAAAHK4/z3ZIjCouR-U/s1600/1.png]
Question 12: What is the difference between PASS BY VALUE and PASS BY REFERENCE?These
concepts are generally used for Function modules or Subroutines etc. and their meaning can be taken
literally.
When we PASS lv_var by VALUE , the actual value of lv_var is copied into VAR.
When we PASS lv_var by REFERENCE , the reference or the memory address of lv_var is passed to the
Function module. So VAR and lv_var will refer to the same memory address and have the same value.
Question 13: What is the difference between Master data and Transaction data?Master data is
data that doesn’t change often and is always needed in the same way by business.
Ex: One time activities like creating Company Codes, Materials, Vendors, Customers etc.
Transaction data keeps on changing and deals with day to day activities carried out in business.
Transactions done by or with Customers, Vendors, and Materials etc. generate Transaction Data. So data
related to Sales, Purchases, Deliveries, Invoices etc. represent transaction data
Important
Question 14: What will you use SELECT SINGLE or SELECT UPTO 1 ROWS ?
What will you use SELECT SINGLE or SELECT UPTO 1 ROWS ?
There is great confusion over this in the SAP arena.
If you Google, you will see lots of results that will say SELECT SINGLE is faster and efficient than
SELECT UPTO 1 ROWS.
But that is 100% incorrect.
http://sap-interview-questions-and-answers.blogspot.in/2012/07/abap-interview-questions.html 5/20
3/6/2016 SAP ABAP Interview Questions Part 1
Question 15: What is the difference between .Include Structure and .Append structure?
I have seen ridiculous answers for this at many places on the Web.
The true answer is this:
Important
Question 16: Can you describe the events in ABAP?
LOAD-OF-PROGRAM:
INITIALIZATION: If you want to initialize some values before selection screen is called
AT SELECTION SCREEN OUTPUT: PBO for Selection Screen
AT SELECTION SCREEN: PAI for Selection Screen
START-OF-SELECTION
END-OF-SELECTION
TOP-OF-PAGE
END-OF-PAGE
Question 17:
Question 19: A system has two clients 100 and 500 on the same application server. If you make
http://sap-interview-questions-and-answers.blogspot.in/2012/07/abap-interview-questions.html 6/20
3/6/2016 SAP ABAP Interview Questions Part 1
changes to a SAPSCRIPT on client 100, will the changes be available in client 500?
No. SAPSCRIPT is client dependent. You will have to transport changes from client 100 to client 500.
However, for SMARTFORMS, Changes will be made both for client 100 and client 500.
Question 20: There are 1000’s of IDOCs in your system and say you no longer need some of them?
How will you get rid of those IDOCs?
A) Use FM IDOC_STATUS_WRITE_TO_DATABASE
B) USE FMs:
EDI_DOCUMENT_OPEN_FOR_PROCESS and
EDI_DOCUMENT_CLOSE_PROCESS
Question 21: What is the difference between CHAIN … ENDCHAIN and FIELD commands in Module
Pool?
If you want to validate a single field in Module Pool, you use the FIELD Command.
On error, this single filed is kept open for input.
If you however want to validate multiple fields, you can use the CHAIN … ENDCHAIN command. You
specify multiple fields between CHAIN and ENDCHAIN.
On error, all fields between CHAIN …… ENDCHAIN are kept open for input.
Question 22: What are the types of Function Modules? What is an UPDATE function module?
There are three types of Function Modules: Normal , RFC , UPDATE.
[http://1.bp.blogspot.com/-ZCpYeaFc-
YE/T_7c3jHlt9I/AAAAAAAAHLE/qz5mImUw03o/s1600/1.png]
The aim of the Update function module is either to COMMIT all changes to database at once or to
ROLLBACK all the changes. By definition, an update function module is used to bundle all the updates
in your system in one LUW (logical unit of work).
http://sap-interview-questions-and-answers.blogspot.in/2012/07/abap-interview-questions.html 7/20
3/6/2016 SAP ABAP Interview Questions Part 1
This FM is called whenever COMMIT WORK statement is encountered in the calling program and the
way you call it is CALL FUNCTION XXX IN UPDATE TASK.
Question 23: How is the table sorted when you do not specify field name and Ascending or
Descending? On what criteria will the table be sorted? Do internal table have keys?
Question 24: Explain what is a foreign key relationship?Explain this with the help of an example.
Let’s discuss about tables EKKO (PO header) and EKPO (PO line item).
Can you have an entry in table EKPO without having an entry in table EKKO?
In other words can you have PO line items without the PO header?
[http://4.bp.blogspot.com/-g_I9hH-_eCI/UAFB1pb6RDI/AAAAAAAAHLU/ib5vTWgScp0/s1600/2.png]
Question 25 : What is the difference between a value table and a check table?Check table is
maintained when you define foreign key relationships.
http://sap-interview-questions-and-answers.blogspot.in/2012/07/abap-interview-questions.html 8/20
3/6/2016 SAP ABAP Interview Questions Part 1
Another example is domain MATNR. For this domain the value table is MARA.
So whenever and wherever, you use this domain the system will force you to use values for MATNR
in table MARA.
[http://4.bp.blogspot.com/-v9Flr8jjKpI/UAFCpRScR3I/AAAAAAAAHLc/ls_5qochK28/s1600/1.png]
Say you want to find a BAPI for creating users in the system, in such case you can search for the ‘User’
and find the relevant BAPIs.
Approach2:
Another way is to find a Business Object. Say you want to find a BAPI for creating Material in SAP and
you know the BO for Material is BUS1001006. You can go to Transaction SWO1 and enter the BO
BUS1001006 in the BOR. Then have a look at the methods for this BO.
[http://1.bp.blogspot.com/-cYtwwP8kDBA/UAFPpLUwQeI/AAAAAAAAHLo/iwOF59sSPKg/s1600/2.png]
Important
Question 27: How do you find BADI?
Approach1:
Go to Class CL_EXITHANDLER in SE24 ---> Put a breakpoint in method GET_INSTANCE.Now go and
execute your transaction code for which you want to find BADI.
You will find the BADI in the changing parameter exit_name:
http://sap-interview-questions-and-answers.blogspot.in/2012/07/abap-interview-questions.html 10/20
3/6/2016 SAP ABAP Interview Questions Part 1
[http://1.bp.blogspot.com/-2ZGvKrGIltk/UAFQzGID4gI/AAAAAAAAHLw/XLBSYDdAebU/s1600/2.png]
Approach 2:
Go to Tcode SE84 Æ Enhancements ÆBADIs Æ Definitions.
Find the package for the Tcode for which you are finding the BADI.
Enter it as shown and hit execute:
http://sap-interview-questions-and-answers.blogspot.in/2012/07/abap-interview-questions.html 11/20
3/6/2016 SAP ABAP Interview Questions Part 1
[http://4.bp.blogspot.com/-pInZPeLco0A/UAFhG19_ZHI/AAAAAAAAHL8/qvUy0j2-BYw/s1600/2.png]
[http://3.bp.blogspot.com/-lxNRUk676cg/UAFhdH_MAfI/AAAAAAAAHME/rGIBXEsKEF0/s1600/2.png]
Are we done yet ? Definitely not !
Let the questions come and lets keep on updating this blog.