SlideShare ist ein Scribd-Unternehmen logo
1 von 23
SAP ABAP Interview Questions
and Answers
Learning IT Courses Has Never Been This Easy

www.ITLearnMore.com
1. Define an ABAP?
ABAP (Advanced Business Application Programming) is a
high level programming language created by the German
software company SAP. It is currently positioned as the
language for programming SAP's Web Application
Server, part of its Net Weaver platform for building
business applications. Its syntax is somewhat similar to
COBOL.

2. What is an ABAP data dictionary?
ABAP 4 data dictionary describes the logical structures of
the objects used in application development and shows
how they are mapped to the underlying relational database
in tables/views.
3. What are domains and data element?
Domains: Domain is the central object for describing the
technical characteristics of an attribute of a business
objects. It describes the value range of the field. Data
Element: It is used to describe the semantic definition of
the table fields like description the field. Data element
describes how a field can be displayed to end-user.
4. What is foreign key relationship?
A relationship which can be defined between tables and
must be explicitly defined at field level. Foreign keys are
used to ensure the consistency of data. Data entered should
be checked against existing data to ensure that there are
now contradictions. While defining foreign key
relationship cardinality has to be specified. Cardinality
mentions how many dependent records or how referenced
records are possible.
5. Describe Data Classes?
 Master data: It is the data which is seldom changed.
 Transaction data: It is the data which is often changed.

Organization data: It is a customizing data which is entered
in the system when the system is configured and is then
rarely changed.
 System data: It is the data which R/3 system needs for itself.

6. Define indexes?
Indexes are described as a copy of a database table reduced
to specific fields. This data exists in sorted form. This
sorting form ease fast access to the field of the tables. In
order that other fields are also read, a pointer to the
associated record of the actual table are included in the
index. The indexes are activated along with the table and
are created automatically with it in the database.
7. What are the Difference between
transparent tables and pooled tables?
Transparent tables: Transparent tables in the dictionary
have a one-to-one relation with the table in database. Its
structure corresponds to single database field. Table in the
database has the same name as in the dictionary.
Transparent table holds application data.
Pooled tables: Pooled tables in the dictionary has a manyto-one relation with the table in database. Table in the
database has the different name as in the dictionary.
Pooled table are stored in table pool at the database level.
8. What is an ABAP/4 Query?
ABAP/4 Query is a powerful tool to generate simple reports
without any coding. ABAP/4 Query can generate the
following 3 simple reports:
 Basic List: It is the simple reports.
 Statistics: Reports with statistical functions like
Average, Percentages.
 Ranked Lists: For analytical reports. - For creating a
ABAP/4 Query, programmer has to create user group and a
functional group. Functional group can be created using
with or without logical database table. Finally, assign user
group to functional group. Finally, create a query on the
functional group generated.
9. What is BDC programming?
Transferring of large/external/legacy data into SAP system
using Batch Input programming. Batch input is a
automatic procedure referred to as BDC (Batch Data
Communications). The central component of the transfer
is a queue file which receives the data vie a batch input
programs and groups associated data into “sessions”.
10. What are the functional modules used in
sequence in BDC?
These are the 3 functional modules which are used in a
sequence to perform a data transfer successfully using BDC
programming: BDC_OPEN_GROUP - Parameters like
Name of the client, sessions and user name are specified in
this functional modules. BDC_INSERT - It is used to insert
the data for one transaction into a session.
BDC_CLOSE_GROUP - This is used to close the batch
input session.
11. What are internal tables?
Internal tables are 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-organizing the contents of database tables
according to users need.
12. What are screen painter and menu painter?
 Screen painter: Screen painter is a tool to design and
maintain screen and its elements. It allows user to create
GUI screens for the transactions. Attributes, layout, filed
attributes and flow logic are the elements of Screen
painter.
 Menu painter: Menu painter is a tool to design the interface
components. Status, menu bars, menu lists, F-key
settings, functions and titles are the components of Menu
painters. Screen painter and menu painter both are the
graphical interface of an ABAP/4 applications.
13. Define ITS? What are the merits of ITS?
ITS is a Internet Transaction Server. ITS forms an
interface between HTTP server and R/3 system, which
converts screen, provided data by the R/3 system into
HTML documents and vice-versa. Merits of ITS: A
complete web transaction can be developed and tested
in R/3 system. All transaction components, including
those used by the ITS outside the R/3 system at
runtime, can be stored in the R/3 system. The
advantage of automatic language processing in the R/3
system can be utilized to language-dependent HTML
documents at runtime.
14. What are the different layers in R/3 system?
There are 3 layers in R/3 system. They
 Presentation Layer.
 Application Layer.
 Database Layer

15. What are the phases of background
processing?
There are 3 phases of background processing. They
 Job Scheduling
 Job Processing.
 Job Overview.
16. What is the differences between structure
and table in data dictionary in ABAP?
Structure and table both are 2/2 matrices but there are
many differences between table and structure.
 1. Table can store the data physically but a structure dose
not store.
 2. Table can have primary key but a structure does not
have.
 3. Table can have the technical attribute but a structure
does not have.
17. What is Smart Form?
Smart Forms allows you to create forms using a graphical
design tool with robust functionality, color, and more.
Additionally, all new forms developed at SAP will be
created with the new Smart Form solution.
18. Explain about the two services that are used
to deal with communication?
 Message Service: Used by the application servers to

exchange short internal messages, all system
communications.
 Gateway Service: Enables communication between R/3 and
external applications using CPI-C protocol.

19. What is service (within R/3)?
A service is a process or group of processes that perform a
specific system function and often provide an applicationprogramming interface for other processes to call.
20. What is ALV programming in ABAP? When is
this grid used in ABAP?
ALV is Application List viewer. Sap provides a set of ALV
(ABAP LIST VIEWER) function modules which can be put
into use to embellish the output of a report. This set of ALV
functions is used to enhance the readability and
functionality of any report output. Cases arise in sap when
the output of a report contains columns extending more
than 255 characters in length. In such cases, this set of ALV
functions can help choose selected columns and arrange
the different columns from a report output and also save
different variants for report display. This is a very efficient
tool for dynamically sorting and arranging the columns
from a report output. The report output can contain up to
90 columns in the display with the wide array of display
options.
21. Describe the difference between macro and
subroutine?
Macros can only be used in the program they are defined in
and only after the definition are expanded at compilation /
generation. Subroutines (FORM) can be called from both
the program they are defined in and other programs. A
MACRO is more or less an abbreviation for some lines of
code that are used more than once or twice. A FORM is a
local subroutine (which can be called external). A
FUNCTION is (more or less) a subroutine that is called
external. Since debugging a MACRO is not really
possible, prevent the use of them (I’ve never used
them, but seen them in action). If the subroutine is used
only local (called internal) use a FORM. If the subroutine is
called external (used by more than one program) use a
FUNCTION.
22. Define Spool request?
Spool requests are generated during dialog or background
processing and placed in the spool database with
information about the printer and print format. The actual
data is places in the Tem Se (Temporary Sequential
objects).

23. Define batch input session?
Batch input session is an intermediate step between
internal table and database table. Data along with the
action is stored in session i.e data for screen fields, to which
screen it is passed, program name behind it, and how next
screen is processed.
24. What are logical databases? What are the
advantages of logical databases?
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. Advantages:
 Check functions which check that user input is
complete, correct, and plausible.
 Meaningful data selection.
 Central authorization checks for database accesses.
 Good read access performance while retaining the
hierarchical data view determined by the application logic.
25. What is an ABAP workbench?
It is a graphical programming environment in the SAP R/3
system to develop different application using ABAP
language. It provides different tools such as ABAP
Dictionary, ABAP Editor, and Screen Painter to create
ABAP application.
Contact Us:
For more details, please log on to www.ITLearnMore.com

You can also Find us on :
Thank you !

Weitere ähnliche Inhalte

Was ist angesagt?

Call transaction method
Call transaction methodCall transaction method
Call transaction method
Kranthi Kumar
 
Sap abap interview questions
Sap abap interview questionsSap abap interview questions
Sap abap interview questions
kssr99
 
Sap abap modularization interview questions
Sap abap modularization interview questionsSap abap modularization interview questions
Sap abap modularization interview questions
Pradipta Mohanty
 

Was ist angesagt? (20)

Badis
Badis Badis
Badis
 
Abap object-oriented-programming-tutorials
Abap object-oriented-programming-tutorialsAbap object-oriented-programming-tutorials
Abap object-oriented-programming-tutorials
 
Abap interview questions and answers
Abap interview questions and answersAbap interview questions and answers
Abap interview questions and answers
 
Technical Overview of CDS View – SAP HANA Part I
Technical Overview of CDS View – SAP HANA Part ITechnical Overview of CDS View – SAP HANA Part I
Technical Overview of CDS View – SAP HANA Part I
 
Sap scripts
Sap scriptsSap scripts
Sap scripts
 
ABAP for Beginners - www.sapdocs.info
ABAP for Beginners - www.sapdocs.infoABAP for Beginners - www.sapdocs.info
ABAP for Beginners - www.sapdocs.info
 
Call transaction method
Call transaction methodCall transaction method
Call transaction method
 
Abap reports
Abap reportsAbap reports
Abap reports
 
Sap scripts
Sap scriptsSap scripts
Sap scripts
 
SAP-ABAP/4@e_max
SAP-ABAP/4@e_maxSAP-ABAP/4@e_max
SAP-ABAP/4@e_max
 
Sap abap interview questions
Sap abap interview questionsSap abap interview questions
Sap abap interview questions
 
Field symbols
Field symbolsField symbols
Field symbols
 
ABAP Advanced List
ABAP Advanced ListABAP Advanced List
ABAP Advanced List
 
ABAP Message, Debugging, File Transfer and Type Group
ABAP Message, Debugging, File Transfer and Type GroupABAP Message, Debugging, File Transfer and Type Group
ABAP Message, Debugging, File Transfer and Type Group
 
Abap package concept
Abap package conceptAbap package concept
Abap package concept
 
Technical Overview of CDS View - SAP HANA Part II
Technical Overview of CDS View - SAP HANA Part IITechnical Overview of CDS View - SAP HANA Part II
Technical Overview of CDS View - SAP HANA Part II
 
SAP ABAP using OOPS - JH Softech
SAP ABAP using OOPS - JH SoftechSAP ABAP using OOPS - JH Softech
SAP ABAP using OOPS - JH Softech
 
Sap abap modularization interview questions
Sap abap modularization interview questionsSap abap modularization interview questions
Sap abap modularization interview questions
 
CDS Views.pptx
CDS Views.pptxCDS Views.pptx
CDS Views.pptx
 
Bdc BATCH DATA COMMUNICATION
Bdc BATCH DATA COMMUNICATIONBdc BATCH DATA COMMUNICATION
Bdc BATCH DATA COMMUNICATION
 

Andere mochten auch

Validations in-lsmw
Validations in-lsmwValidations in-lsmw
Validations in-lsmw
thopubaachi
 

Andere mochten auch (20)

Fico notes
Fico notesFico notes
Fico notes
 
Sap query by guntupalli hari
Sap query by guntupalli hariSap query by guntupalli hari
Sap query by guntupalli hari
 
Unit 4 assembly language programming
Unit 4   assembly language programmingUnit 4   assembly language programming
Unit 4 assembly language programming
 
Lsmw by guntupalliharikrishna
Lsmw by guntupalliharikrishnaLsmw by guntupalliharikrishna
Lsmw by guntupalliharikrishna
 
Idoc testing in ieds by guntupalli hari krishna
Idoc testing in ieds by guntupalli hari krishnaIdoc testing in ieds by guntupalli hari krishna
Idoc testing in ieds by guntupalli hari krishna
 
Sap fico-fi-notes
Sap fico-fi-notesSap fico-fi-notes
Sap fico-fi-notes
 
SAP Validation and substitution
SAP Validation and  substitution SAP Validation and  substitution
SAP Validation and substitution
 
Interfacing sap - BDC
Interfacing sap - BDC Interfacing sap - BDC
Interfacing sap - BDC
 
Su01 parameters fico_guntupalliharikrishna
Su01 parameters fico_guntupalliharikrishna Su01 parameters fico_guntupalliharikrishna
Su01 parameters fico_guntupalliharikrishna
 
IDOC
IDOC IDOC
IDOC
 
CIN knowledge bank
CIN knowledge bankCIN knowledge bank
CIN knowledge bank
 
Sap costing variant by guntupalli hari krishna
Sap costing variant by guntupalli hari krishnaSap costing variant by guntupalli hari krishna
Sap costing variant by guntupalli hari krishna
 
Cash management configue doc v1
Cash management   configue doc v1Cash management   configue doc v1
Cash management configue doc v1
 
Sap simple finance Add-on by guntupalli Hari
Sap simple finance Add-on by guntupalli HariSap simple finance Add-on by guntupalli Hari
Sap simple finance Add-on by guntupalli Hari
 
New GL parallel ledgers in asset accounting
New GL parallel ledgers in asset accounting New GL parallel ledgers in asset accounting
New GL parallel ledgers in asset accounting
 
CIN User Manual
CIN User ManualCIN User Manual
CIN User Manual
 
Make to order document
Make to order document Make to order document
Make to order document
 
Validations in-lsmw
Validations in-lsmwValidations in-lsmw
Validations in-lsmw
 
Using idoc method in lsmw
Using idoc method in lsmwUsing idoc method in lsmw
Using idoc method in lsmw
 
Recording steps in SAP BDC
Recording steps in SAP BDCRecording steps in SAP BDC
Recording steps in SAP BDC
 

Ähnlich wie SAP ABAP Interview questions

SAP ABAP Latest Interview Questions
SAP ABAP Latest  Interview Questions SAP ABAP Latest  Interview Questions
SAP ABAP Latest Interview Questions
piyushchawala
 
05. sap architecture final and os concepts (1)
05. sap architecture  final and os concepts (1)05. sap architecture  final and os concepts (1)
05. sap architecture final and os concepts (1)
Tarek Hossain Chowdhury
 
Lecture01 abap on line
Lecture01 abap on lineLecture01 abap on line
Lecture01 abap on line
Milind Patil
 
Java Abs Java Productivity Creator & Analyzer
Java Abs   Java Productivity Creator & AnalyzerJava Abs   Java Productivity Creator & Analyzer
Java Abs Java Productivity Creator & Analyzer
ncct
 

Ähnlich wie SAP ABAP Interview questions (20)

1000 sap-interview-qa
1000 sap-interview-qa1000 sap-interview-qa
1000 sap-interview-qa
 
SAP ABAP Latest Interview Questions
SAP ABAP Latest  Interview Questions SAP ABAP Latest  Interview Questions
SAP ABAP Latest Interview Questions
 
Top 35-interview-questions-on-sap-abap
Top 35-interview-questions-on-sap-abapTop 35-interview-questions-on-sap-abap
Top 35-interview-questions-on-sap-abap
 
Abap faq
Abap faqAbap faq
Abap faq
 
Project Report on SAP
Project Report on SAPProject Report on SAP
Project Report on SAP
 
05. sap architecture final and os concepts (1)
05. sap architecture  final and os concepts (1)05. sap architecture  final and os concepts (1)
05. sap architecture final and os concepts (1)
 
Interview qq
Interview qqInterview qq
Interview qq
 
SAP ABAP Interview Question Answer Online Training
SAP ABAP Interview Question Answer Online TrainingSAP ABAP Interview Question Answer Online Training
SAP ABAP Interview Question Answer Online Training
 
Sap Interview Questions - Part 1
Sap Interview Questions - Part 1Sap Interview Questions - Part 1
Sap Interview Questions - Part 1
 
Project seminar
Project seminarProject seminar
Project seminar
 
ABAP FAQ S On Reports Scripts BDC Dialogs ABAP Reporting SAP TERMINOLOGY
ABAP FAQ S On Reports   Scripts   BDC   Dialogs ABAP Reporting SAP TERMINOLOGYABAP FAQ S On Reports   Scripts   BDC   Dialogs ABAP Reporting SAP TERMINOLOGY
ABAP FAQ S On Reports Scripts BDC Dialogs ABAP Reporting SAP TERMINOLOGY
 
Programming Interface & SAP BDC
Programming Interface & SAP BDCProgramming Interface & SAP BDC
Programming Interface & SAP BDC
 
Sap architecture
Sap architectureSap architecture
Sap architecture
 
Ijebea14 228
Ijebea14 228Ijebea14 228
Ijebea14 228
 
Database Management system, database architecture unikkkkkkkkkkkkkkk
Database Management system, database architecture unikkkkkkkkkkkkkkkDatabase Management system, database architecture unikkkkkkkkkkkkkkk
Database Management system, database architecture unikkkkkkkkkkkkkkk
 
Sap – A Birds Eye View Mahbub
Sap – A Birds Eye View MahbubSap – A Birds Eye View Mahbub
Sap – A Birds Eye View Mahbub
 
Lecture01 abap on line
Lecture01 abap on lineLecture01 abap on line
Lecture01 abap on line
 
Java Abs Java Productivity Creator & Analyzer
Java Abs   Java Productivity Creator & AnalyzerJava Abs   Java Productivity Creator & Analyzer
Java Abs Java Productivity Creator & Analyzer
 
Sap abap material
Sap abap materialSap abap material
Sap abap material
 
abapin21days.pdf
abapin21days.pdfabapin21days.pdf
abapin21days.pdf
 

Mehr von IT LearnMore

Mehr von IT LearnMore (17)

SAP Success Factors Online Training
SAP Success Factors Online TrainingSAP Success Factors Online Training
SAP Success Factors Online Training
 
SAP HCM Consultant
SAP HCM ConsultantSAP HCM Consultant
SAP HCM Consultant
 
SAP MM Practice exam
SAP MM Practice examSAP MM Practice exam
SAP MM Practice exam
 
SAP SD Practice Exam
SAP SD Practice ExamSAP SD Practice Exam
SAP SD Practice Exam
 
SAP SRM Practice Exam
SAP SRM Practice ExamSAP SRM Practice Exam
SAP SRM Practice Exam
 
SAP BASIS Practice Exam
SAP BASIS Practice ExamSAP BASIS Practice Exam
SAP BASIS Practice Exam
 
SAP HR AND HCM Practice Exam
SAP HR AND HCM Practice ExamSAP HR AND HCM Practice Exam
SAP HR AND HCM Practice Exam
 
SAP ABAP Practice exam
SAP ABAP Practice examSAP ABAP Practice exam
SAP ABAP Practice exam
 
SAP FICO Practice Exam
SAP FICO Practice ExamSAP FICO Practice Exam
SAP FICO Practice Exam
 
SAP CRM Interview questions
SAP CRM Interview questions SAP CRM Interview questions
SAP CRM Interview questions
 
SAP HR AND HCM Interview questions
SAP HR AND HCM Interview questionsSAP HR AND HCM Interview questions
SAP HR AND HCM Interview questions
 
SAP SD interview questions
SAP SD interview questions SAP SD interview questions
SAP SD interview questions
 
SAP SRM Interview questions
SAP SRM Interview questionsSAP SRM Interview questions
SAP SRM Interview questions
 
SAP MM Interview questions
SAP MM Interview questionsSAP MM Interview questions
SAP MM Interview questions
 
SAP HANA Interview questions
SAP HANA Interview questionsSAP HANA Interview questions
SAP HANA Interview questions
 
SAP FICO Interview questions
SAP FICO Interview questionsSAP FICO Interview questions
SAP FICO Interview questions
 
C ppt
C pptC ppt
C ppt
 

Kürzlich hochgeladen

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Kürzlich hochgeladen (20)

Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 

SAP ABAP Interview questions

  • 1. SAP ABAP Interview Questions and Answers Learning IT Courses Has Never Been This Easy www.ITLearnMore.com
  • 2. 1. Define an ABAP? ABAP (Advanced Business Application Programming) is a high level programming language created by the German software company SAP. It is currently positioned as the language for programming SAP's Web Application Server, part of its Net Weaver platform for building business applications. Its syntax is somewhat similar to COBOL. 2. What is an ABAP data dictionary? ABAP 4 data dictionary describes the logical structures of the objects used in application development and shows how they are mapped to the underlying relational database in tables/views.
  • 3. 3. What are domains and data element? Domains: Domain is the central object for describing the technical characteristics of an attribute of a business objects. It describes the value range of the field. Data Element: It is used to describe the semantic definition of the table fields like description the field. Data element describes how a field can be displayed to end-user.
  • 4. 4. What is foreign key relationship? A relationship which can be defined between tables and must be explicitly defined at field level. Foreign keys are used to ensure the consistency of data. Data entered should be checked against existing data to ensure that there are now contradictions. While defining foreign key relationship cardinality has to be specified. Cardinality mentions how many dependent records or how referenced records are possible.
  • 5. 5. Describe Data Classes?  Master data: It is the data which is seldom changed.  Transaction data: It is the data which is often changed. Organization data: It is a customizing data which is entered in the system when the system is configured and is then rarely changed.  System data: It is the data which R/3 system needs for itself. 6. Define indexes? Indexes are described as a copy of a database table reduced to specific fields. This data exists in sorted form. This sorting form ease fast access to the field of the tables. In order that other fields are also read, a pointer to the associated record of the actual table are included in the index. The indexes are activated along with the table and are created automatically with it in the database.
  • 6. 7. What are the Difference between transparent tables and pooled tables? Transparent tables: Transparent tables in the dictionary have a one-to-one relation with the table in database. Its structure corresponds to single database field. Table in the database has the same name as in the dictionary. Transparent table holds application data. Pooled tables: Pooled tables in the dictionary has a manyto-one relation with the table in database. Table in the database has the different name as in the dictionary. Pooled table are stored in table pool at the database level.
  • 7. 8. What is an ABAP/4 Query? ABAP/4 Query is a powerful tool to generate simple reports without any coding. ABAP/4 Query can generate the following 3 simple reports:  Basic List: It is the simple reports.  Statistics: Reports with statistical functions like Average, Percentages.  Ranked Lists: For analytical reports. - For creating a ABAP/4 Query, programmer has to create user group and a functional group. Functional group can be created using with or without logical database table. Finally, assign user group to functional group. Finally, create a query on the functional group generated.
  • 8. 9. What is BDC programming? Transferring of large/external/legacy data into SAP system using Batch Input programming. Batch input is a automatic procedure referred to as BDC (Batch Data Communications). The central component of the transfer is a queue file which receives the data vie a batch input programs and groups associated data into “sessions”.
  • 9. 10. What are the functional modules used in sequence in BDC? These are the 3 functional modules which are used in a sequence to perform a data transfer successfully using BDC programming: BDC_OPEN_GROUP - Parameters like Name of the client, sessions and user name are specified in this functional modules. BDC_INSERT - It is used to insert the data for one transaction into a session. BDC_CLOSE_GROUP - This is used to close the batch input session.
  • 10. 11. What are internal tables? Internal tables are 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-organizing the contents of database tables according to users need.
  • 11. 12. What are screen painter and menu painter?  Screen painter: Screen painter is a tool to design and maintain screen and its elements. It allows user to create GUI screens for the transactions. Attributes, layout, filed attributes and flow logic are the elements of Screen painter.  Menu painter: Menu painter is a tool to design the interface components. Status, menu bars, menu lists, F-key settings, functions and titles are the components of Menu painters. Screen painter and menu painter both are the graphical interface of an ABAP/4 applications.
  • 12. 13. Define ITS? What are the merits of ITS? ITS is a Internet Transaction Server. ITS forms an interface between HTTP server and R/3 system, which converts screen, provided data by the R/3 system into HTML documents and vice-versa. Merits of ITS: A complete web transaction can be developed and tested in R/3 system. All transaction components, including those used by the ITS outside the R/3 system at runtime, can be stored in the R/3 system. The advantage of automatic language processing in the R/3 system can be utilized to language-dependent HTML documents at runtime.
  • 13. 14. What are the different layers in R/3 system? There are 3 layers in R/3 system. They  Presentation Layer.  Application Layer.  Database Layer 15. What are the phases of background processing? There are 3 phases of background processing. They  Job Scheduling  Job Processing.  Job Overview.
  • 14. 16. What is the differences between structure and table in data dictionary in ABAP? Structure and table both are 2/2 matrices but there are many differences between table and structure.  1. Table can store the data physically but a structure dose not store.  2. Table can have primary key but a structure does not have.  3. Table can have the technical attribute but a structure does not have.
  • 15. 17. What is Smart Form? Smart Forms allows you to create forms using a graphical design tool with robust functionality, color, and more. Additionally, all new forms developed at SAP will be created with the new Smart Form solution.
  • 16. 18. Explain about the two services that are used to deal with communication?  Message Service: Used by the application servers to exchange short internal messages, all system communications.  Gateway Service: Enables communication between R/3 and external applications using CPI-C protocol. 19. What is service (within R/3)? A service is a process or group of processes that perform a specific system function and often provide an applicationprogramming interface for other processes to call.
  • 17. 20. What is ALV programming in ABAP? When is this grid used in ABAP? ALV is Application List viewer. Sap provides a set of ALV (ABAP LIST VIEWER) function modules which can be put into use to embellish the output of a report. This set of ALV functions is used to enhance the readability and functionality of any report output. Cases arise in sap when the output of a report contains columns extending more than 255 characters in length. In such cases, this set of ALV functions can help choose selected columns and arrange the different columns from a report output and also save different variants for report display. This is a very efficient tool for dynamically sorting and arranging the columns from a report output. The report output can contain up to 90 columns in the display with the wide array of display options.
  • 18. 21. Describe the difference between macro and subroutine? Macros can only be used in the program they are defined in and only after the definition are expanded at compilation / generation. Subroutines (FORM) can be called from both the program they are defined in and other programs. A MACRO is more or less an abbreviation for some lines of code that are used more than once or twice. A FORM is a local subroutine (which can be called external). A FUNCTION is (more or less) a subroutine that is called external. Since debugging a MACRO is not really possible, prevent the use of them (I’ve never used them, but seen them in action). If the subroutine is used only local (called internal) use a FORM. If the subroutine is called external (used by more than one program) use a FUNCTION.
  • 19. 22. Define Spool request? Spool requests are generated during dialog or background processing and placed in the spool database with information about the printer and print format. The actual data is places in the Tem Se (Temporary Sequential objects). 23. Define batch input session? Batch input session is an intermediate step between internal table and database table. Data along with the action is stored in session i.e data for screen fields, to which screen it is passed, program name behind it, and how next screen is processed.
  • 20. 24. What are logical databases? What are the advantages of logical databases? 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. Advantages:  Check functions which check that user input is complete, correct, and plausible.  Meaningful data selection.  Central authorization checks for database accesses.  Good read access performance while retaining the hierarchical data view determined by the application logic.
  • 21. 25. What is an ABAP workbench? It is a graphical programming environment in the SAP R/3 system to develop different application using ABAP language. It provides different tools such as ABAP Dictionary, ABAP Editor, and Screen Painter to create ABAP application.
  • 22. Contact Us: For more details, please log on to www.ITLearnMore.com You can also Find us on :