106 Top Sap Abap Interview Questions and Answers PDF Sap Abap Interview Questions and Answers PDF For Freshers Experienced PDF Free

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 8

SAP ABAP Interview Questions and Answers pdf for Freshers

Experienced
ABAP DATA DICTIONARY,ALE Interview Questions,BDC programs,Enhancements,Interactive lists /Reports,Internal Table
SCRIPTS,SMARTFORMS Interview Questions and Answers free Download

HOME Interview Questions Multiple Choice Questions Tutorials SAP ABAP JOBS SAP ABAP Real Time PROJECT

Su n d a y,   N o v e m b e r   9 ,   2 0 1 4

106 TOP SAP ABAP Interview Questions and Answers PDF


Master Thermal Analysis
Thermal Analysis Tutorial Package. Win a Self-Learning Course!

Ads by Google
sap abap interview questions and answers fo
Download PDF
experienced pdf­­CLICK HERE
Interview Questions PDF 106 Top SAP ABAP Interview Questions and Answers:

Blog Archive 1)   What is SAP ABAP?


►  2016 (35)
2)   What do you mean by an ABAP data dictionary?
▼  2014 (15)
▼  November (15) 3)   Explain the difference between pool tables and transparent tables?
‘HELLO WORLD’ ABAP PROGRAM
| ABAP Project 4)   What do you mean by BDC (Batch Data Communications) programming?
SAP ABAP JOBS­2014 | 2015
100 [UPDATED] ABAP Interview 5)   Describe the data classes?
Questions and Answers...
Sap Abap Tutorials 6)   What are the internal tables?

106 TOP SAP ABAP Interview
Questions and Answers P... 7)   List down the functional modules used in sequence in BDC?

Object Oriented Classic Program
for Single Table 8)   What is a foreign key relationship?

80 [UPDATED] SAP ABAP
Multiple Choice Questions an... 9)   In ABAP what are the differences between table and structure in data dictionary?

15 [UPDATED] SAP ABAP
SMARTFORMS Interview
11)   What are the components of SAP scripts?
Questio...
12)   How to create ‘table cluster’?
32 [UPDATED] ABAP SAP
SCRIPTS Interview Questions
... 13)   How can you format the data before write statement in the report?
28 [UPDATED] SAP ABAP
Internal Tables interview qu... 14)   Explain the difference between Template and Table?
24 [UPDATED] SAP ABAP
Interactive lists /Reports I... 15)   Mention what is ALV programming in ABAP? When is this grid used in ABAP?
35 [UPDATED] SAP ABAP
Enhancements Interview 16)   When do we use End­of­selection?
Quest...
25 [UPDATED] SAP ABAP BDC 17)   Mention the difference between ABAP and OOABAP? In what situation do you use OOABAP?
programs Interview Quest...
18)   What is table buffer?  Which type of tables used this buffer?
10 [UPDATED] My Experiance ­
SAP ABAP ALE Intervie... 19)   What is the use of ‘pretty printer’?
72 [UPDATED] SAP ABAP DATA
DICTIONARY Interview Qu... 20)   What is the difference between ‘Type’ and ‘Like’?

21)   What are the different ABAP/4 editors? What are the differences?

22)   Explain the difference between dialog program and a report?

23)   What is lock object?

24)   How data is stored in cluster table?

25)   How can you debug a script form?

26)   What are different types of data dictionary objects?

27)   What are the ways you can do the tuning? What are the major steps will you use for these?

28)   In the ‘select’ statement what is ‘group by’?

29)   What is dispatcher?

30)   Mention what are the two methods of modifying SAP standard tables?

31)   What is the difference between a ‘Database index’ and a ‘Match code’?

32)   Explain the benefits of modularization technique?

33)   How can you create callable modules of program code within one ABAP/4 program?

34)   What are different types of parameters? How can you distinguish between different kinds of

35)   What are the different databases Integrities?

36. What are ranges? What are number ranges?
ANS:­
max,min values provided in selection screens.

37. What are select options and what is the diff from parameters?
ANS:­
select options provide ranges where as parameters do not.
SELECT­OPTIONS declares an internal table which is automatically filled with values or ranges
of values entered by the end user. For each SELECT­OPTIONS , the system creates a selection tab
SELECT­OPTIONS <SEL> FOR <field>.
A selection table is an internal table with fields SIGN, OPTION, LOW and HIGH.
The type of LOW and HIGH is the same as that of <field>.
The SIGN field can take the following values: I Inclusive (should apply) E Exclusive (should not ap
The OPTION field can take the following values: EQ Equal GT Greater than NE Not equal BT Betwe
than or equal NB Not between LT Less than CP Contains pattern GE Greater than or equal NP No 
diff:­
PARAMETERS allow users to enter a single value into an internal field within a report.
SELECT­OPTIONS allow users to fill an internal table with a range of values.
For each PARAMETERS or SELECT­OPTIONS statement you should define text elements by choosi
Goto – Text elements – Selection texts – Change.
Eg:­ Parameters name(30).
when the user executes the ABAP/4 program,an input field for ‘name’ will appear on the selection
can change the comments on the left side of the input fields by using text elements as described 
Texts.

38. How do you validate the selection criteria of a report?
And how do you display initial values in a selection screen?
ANS:­
validate :­ by using match code objects.
display :­ Parameters <name> default ‘xxx’.
select­options <name> for spfli­carrid.

39. What are selection texts?
ANS:­

40. What is CTS and what do you know about it?
ANS:­
The Change and Transport System (CTS) is a tool that helps you to organize development project
Workbench and in Customizing, and then transport the changes between the SAP Systems and c
system landscape.
This documentation provides you with an overview of how to manage changes with the CTS and e
information on setting up your system and client landscape and deciding on a transport strategy.
follow this documentation when planning your development project.
For practical information on working with the Change and Transport System, see Change and Tra
Organizer and Transport Management System.

41. When a program is created and need to be transported to prodn does selection texts always g
how do you make sure? Can you change the CTS entries? How do you do it?
ANS:­

42. What is the client concept in SAP? What is the meaning of client independent?
ANS:­

43. Are programs client dependent?
ANS:­
Yes.Group of users can access these programs with a client no.

44. Name a few system global variables you can use in ABAP programs?
ANS:­
SY­SUBRC,SY­DBCNT,SY­LILLI,SY­DATUM,SY­UZEIT,SY­UCOMM,SY­TABIX…..
SY­LILLI IS ABSOLUTE NO OF LINES FROM WHICH THE EVENT WAS TRIGGERED.

45. What are internal tables? How do you get the number of lines in an internal table?
How to use a specific number occurs statement?
ANS:­
i)It is a standard data type object which exists only during the runtime of the program.
They are used to perform table calculations on subsets of database tables and for re­organising th
database tables according to users need.
ii)using SY­DBCNT.
iii)The number of memory allocations the system need to allocate for the next record population.

46. How do you take care of performance issues in your ABAP programs?
Performance of ABAPs can be improved by minimizing the amount of data to be transferred.
The data set must be transferred through the network to the applications, so reducing the amoun
also reduces the network traffic.
Some measures that can be taken are:
– Use views defined in the ABAP/4  DDIC (also has the advantage of better reusability).
– Use field list (SELECT clause) rather than SELECT *.
– Range tables should be avoided (IN operator)
– Avoid nested SELECTS.
i)system tools
ii)field symbols and field groups.
ans:­
Field Symbols : Field symbols are placeholders for existing fields. A Field Symbol does not physica
space for a field,but points to a field which is not known until runtime of the program.
eg:­  FIELD­SYMBOL <FS> [<TYPE>].
Field groups :  A field group combines several fields under one name.At runtime,the INSERT com
to define which data fields are assigned to which field group.
There should always be a HEADER field group that defines how the extracted data will be sorted,t
sorted by the fields grouped under the HEADER field group.

47. What are datasets?
ANS:­
The sequential files(ON APPLICATION SERVER) are called datasets. They are used for file handling

48. How to find the return code of a statement in ABAP programs?
ANS:­
Using function modules.

49. What are interface/conversion programs in SAP?
ANS :
CONVERSION : LEGACY SYSTEM TO FLAT FILE.
INTERFACE  : FLAT FILE TO SAP SYSTEM.

50. Have you used SAP supplied programs to load master data?

51. What are the techniques involved in using SAP supplied programs?
Do you prefer to write your own programs to load master data? Why?

52. What are logical databases? What are the advantages/disadvantages of logical databases?
ANS:­
To read data from a database tables we use logical database.
A logical database provides read­only access to a group of related tables to an ABAP/4 program.
adv:­
The programmer need not worry about the primary key for each table.Because Logical database 
different tables relate to each other,and can issue the SELECT command with proper where claus
the data.
i)An easy­to­use standard user interface.
ii)check functions which check that user input is complete,correct,and plausible.
iii)meaningful data selection.
iv)central authorization checks for database accesses.
v)good read access performance while retaining the hierarchical data view determined by the app
disadv:­
i)If you donot specify a logical database in the program attributes,the GET events never occur.
ii)There is no ENDGET command,so the code block associated with an event ends with the next ev
statement (such as another GET or an END­OF­SELECTION).

53. What specific statements do you using when writing a drill down report?
ans:­
AT LINE­SELECTION,AT USER­COMMAND,AT PF.

54. What are different tools to report data in SAP? What all have you used?
ans:­

55. What are the advantages and disadvantages of ABAP/4 query tool?

56. What are the functional areas? User groups? and how does ABAP/4 query work in relation to 

57. Is a logical database a requirement/must to write an ABAP/4 query?

59. What are Change header/detail tables? Have you used them?

60. What do you do when the system crashes in the middle of a BDC batch session?
ans:­
we will look into the error log file (SM35).

61. What do you do with errors in BDC batch sessions?
ANS:­
We look into the list of incorrect session and process it again. To correct incorrect session we anal
to determine which screen and value produced the error.For small errors in data we correct them
otherwise
modify batch input program that has generated the session or many times even the datafile.

62. How do you set up background jobs in SAP? What are the steps? What are the event driven b
ans:­
go to SM36 and create background job by giving job name,job class and job steps(JOB SCHEDUL

63. Is it possible to run host command from SAP environment? How do you run?

64. What kind of financial periods exist in SAP? What is the relavent table for that?

65. Does SAP handle multiple currencies? Multiple languages?
ans:­
Yes.
66. What is a currency factoring technique?

68. What is SAPscript and layout set?
ans:­
The tool which is used to create layout set is called SAPscript. Layout set is a design document.

69. What are the ABAP/4 commands that link to a layout set?
ans:­
control commands,system commands,

70. What is output determination?

71. What are IDOCs?
ans:­
IDOCs are intermediate documents to hold the messages as a container.

72. What are screen painter? menu painter? Gui status? ..etc.
ans:­
dynpro – flow logic + screens.
menu painter –
GUI Status – It is subset of the interface elements(title bar,menu bar,standard tool bar,push butt
certain screen.
The status comprises those elements that are currently needed by the transaction.
73. What is screen flow logic? What are the sections in it? Explain PAI and PBO.
ans:­
The control statements that control the screen flow.
PBO – This event is triggered before the screen is displayed.
PAI – This event is responsible for processing of screen after the user enters the data and clicks th

74. Overall how do you write transaction programs in SAP?
ans:­
Create program­SE93­create transcode­Run it from command field.

75. Does SAP has a GUI screen painter or not? If yes what operating systems is it available on? W
type of screen painter called?

76. What are step loops? How do you program pagedown pageup in step loops?
ans:­
step loops are repeated blocks of field in a screen.

77. Is ABAP a GUI language?
ANS:­
Yes.
ABAP IS AN EVENT DRIVEN LANGUAGE.

78. Normally how many and what files get created when a transaction program is written?
What is the XXXXXTOP program?
ans:­
ABAP/4 program.
DYNPRO

79. What are the include programs?
ANS:­
When the same sequence of statements in several programs are to be written repeadly they are c
programs (External programs) and  are included in ABAP/4 programs.

80. Can you call a subroutine of one program from another program?
ans:­  Yes­ only external subroutines Using ‘SUBMIT’ statement.

81. What are user exits? What is involved in writing them? What precations are needed?

82. What are RFCs? How do you write RFCs on SAP side?

83. What are the general naming conventions of ABAP programs?
ANS:­
Should start with Y or Z.

84. How do you find if a logical database exists for your program requrements?
ans:­
SLDB­F4.

85. How do you find the tables to report from when the user just tell you the transaction he uses?
underlying data is from SAP structures?
ans:­
Transcode is entered in command field to open the table.Utilities­Table contents­display.
86. How do you find the menu path for a given transaction in SAP?
ans:­

87. What are the different modules of SAP?
ans:­
FI,CO,SD,MM,PP,HR.

89. How do you get help in ABAP?
ans:­
HELP­SAP LIBRARY,by pressing F1 on a keyword.

90. What are different ABAP/4 editors? What are the differences?
ans:­

91. What are the different elements in layout sets?
ans:­
PAGES,Page windows,Header,Paragraph,Character String,Windows.

92. Can you use if then else, perform ..etc statements in sap script?
ans:­
yes.
93. What type of variables normally used in sap script to output data?

94. How do you number pages in sapscript layout outputs?

95. What takes most time in SAP script programming?
ANS:­
LAYOUT DESIGN AND LOGO INSERTION.

96. How do you use tab sets in layout sets?

97. How do you backup sapscript layout sets? Can you download and upload? How?

98. What are presentation and application servers in SAP?
ANS:­
The application layer of an R/3 System is made up of the application servers and the message ser
Application programs in an R/3 System are run on application servers. The application servers co
with the presentation components, the database, and also with each other, using the message se

99. In an ABAP/4 program how do you access data that exists on a presentation server vs on an 
server?
ans:­
i)using loop statements.
ii)flat

100. What are different data types in ABAP/4?
ans:­
Elementary –
predefined C,D,F,I,N,P,T,X.
userdefined TYPES.
ex: see in intel book page no 35/65
Structured –
predefined    TABLES.
userdefined Field Strings and internal tables.

101. What is difference between session method and Call Transaction?
ans:­

102. Setting up a BDC program where you find information from?
ans:­

103. What has to be done to the packed fields before submitting to a BDC session.
ans:­
fields converted into character type.

104. What is the structure of a BDC sessions.
ans:­
BDCDATA (standard structure).

105. What are the fields in a BDC_Tab Table.
ans:­
program,dynpro,dynbegin,fnam,fval.

106. What do you define in the domain and data element.
Technical details like

sap abap interview questions and answers pdf
sap abap interview questions and answers in ibm
sap abap interview questions and answers for freshers

1. sap abap interview questions and answers on smartforms
2. sap abap interview questions and answers on reports
3. sap abap interview questions and answers pdf for freshers

sap abap interview questions and answers 2014
sap abap interview questions for experienced
sap abap interview questions for 2+ years experience
sap abap interview questions and answers pdf
sap abap interview questions for freshers
sap abap interview questions and answers pdf for freshers
sap abap interview questions accenture
sap abap interview questions and answers for freshers
sap abap interview questions on reports
sap abap interview questions for 3 years experience
sap abap interview questions to 3+ years of experience
sap abap interview questions and answers for 2 years experienced
sap abap interview questions for experienced candidates
sap abap interview questions for 2 years experience
sap abap interview questions for 2+ years experience
abap interview questions for experienced
abap interview questions pdf
abap interview questions on reports
abap interview questions for freshers
abap interview questions accenture

1. abap interview questions on data dictionary
2. abap interview questions accenture
3. abap interview questions pdf

abap interview questions for 3 years experience
abap interview questions 2012
ibm abap interview questions

abap interview questions on reports
abap interview questions for freshers
abap interview questions on data dictionary

sap abap interview questions and answers pdf
abap interview questions and answers ibm
abap interview questions and answers in accenture

sap abap interview questions and answers for freshers
abap interview questions and answers for freshers
abap interview questions and answers in pdf

abap interview questions download
web dynpro abap interview questions and answers
abap tutorial for beginners pdf
abap tutorial for beginners
abap tutorial pdf
abap programming
abap tutorial download
abap ebook
abap tutorial pdf free download
sap abap tutorial for beginners
sap abap tutorials for beginners pdf

1. sap abap tutorials for beginners pdf download
2. abap programming language tutorial
3. sap abap basics for beginners pdf

sap abap beginners guide
abap programs for beginners
sap­abap sample programs for beginners

module pool programming in abap step by step pdf
sap abap tutorials pdf
sap abap tutorials for beginners

sap abap material
sap abap tutorials free download
badi in sap abap tutorials

sap abap tutorials videos
sap abap tutorials ppt
sap abap fresher jobs
abap interview questions for 3 years experience
abap interview questions 2012
ibm abap interview questions
abap interview questions on reports
abap interview questions for freshers
abap interview questions on data dictionary
sap abap interview questions and answers pdf
abap interview questions and answers ibm
abap interview questions and answers in accenture
sap abap interview questions and answers for freshers
abap interview questions and answers for freshers
abap interview questions and answers in pdf
sap abap beginners guide
abap programs for beginners
sap­abap sample programs for beginners
module pool programming in abap step by step pdf
sap abap tutorials pdf
sap abap tutorials for beginners
sap abap material
sap abap tutorials free download
badi in sap abap tutorials 

Master Thermal Analysis


Thermal Analysis Tutorial Package. Win a Self-Learning Course!

at 8:56 AM  +1   Recommend this on Google

Labels: ABAP Interview Questions, SAP ABAP Interview Questions and Answers PDF, sap abap inteview questions
Choice, tutorials

No comments:

Post a Comment

Enter your comment...

Comment as:  Select profile...

Publish
  Preview

Newer Post Home

Subscribe to: Post Comments (Atom)

Powered by Blogger.

You might also like