ABAP Interview Questions and Answers
ABAP : What are Data Clusters in ABAP?

What are Data Clusters in ABAP?

We can group any complex internal data objects of an ABAP/4 program together in data clusters and st....
Category: ABAP Date: 12/3/2009 7:34:32 AM
ABAP : What is the disadvantage of a call by reference?

What is the disadvantage of a call by reference?

During a call by reference damage or loss of data is not restricted to the subroutine, but will inst....
Category: ABAP Date: 12/3/2009 7:20:48 AM
ABAP : What are the different methods of passing data in ABAP?

What are the different methods of passing data in ABAP?

1) Calling by reference: During a subroutine call, only the address of the actual parameter is tran....
Category: ABAP Date: 12/3/2009 7:17:14 AM
ABAP : How can we distinguish between different kinds of parameters in ABAP?

How can we distinguish between different kinds of parameters in ABAP?

1) Input parameters which are used to pass data to subroutines. 2) Output parameters which are used....
Category: ABAP Date: 12/3/2009 7:11:32 AM
ABAP : What are the different types of parameters in ABAP?

What are the different types of parameters in ABAP?

1) Formal parameters: Parameters that are defined during the definition of subroutine with the FORM ....
Category: ABAP Date: 12/3/2009 7:09:55 AM
ABAP : What are the types of Subroutines in ABAP?

What are the types of Subroutines in ABAP?

ABAP supports two types of Subroutines: 1) Internal Subroutines: The source code of the internal s....
Category: ABAP Date: 12/3/2009 7:06:28 AM
ABAP : What are subroutines in ABAP?

What are subroutines in ABAP?

Subroutines are program modules which can be called from other ABAP/4 programs or within the same pr....
Category: ABAP Date: 12/3/2009 7:04:23 AM
ABAP : What is the use of BREAK-POINT statement in an ABAP program?

What is the use of BREAK-POINT statement in an ABAP program?

It interrupts program execution and starts the Debugger. This allows you to test your programs by ha....
Category: ABAP Date: 10/2/2009 7:50:09 AM
ABAP : Which function modules are used to write data from an Internal Table to the Presentation Server?
ABAP : Which function modules are used to read data from Presentation Server into an Internal Table?
ABAP : Which statement is used to define page footer in a ABAP report program?

Which statement is used to define page footer in a ABAP report program?

END-OF-PAGE.
Category: ABAP Date: 10/2/2009 7:37:04 AM
ABAP : What are the various objects of the ABAP data dictionary?

What are the various objects of the ABAP data dictionary?

Basic objects: 1) Tables 2) Domains 3) Data elements 4) Structures 5) Foreign keys Aggregate object....
Category: ABAP Date: 10/2/2009 7:32:29 AM
ABAP : What is GUI Status?

What is GUI Status?

Each screen in SAP has a GUI status. The status is a collection of interactive interface elements th....
Category: ABAP Date: 9/18/2009 9:53:06 PM
ABAP : What is GUI Title?

What is GUI Title?

GUI Title is title of a screen that appears in the title bar of the window. A GUI title is an indepe....
Category: ABAP Date: 9/18/2009 9:50:35 PM
ABAP : What are the various Elementary Data Types in ABAP?

What are the various Elementary Data Types in ABAP?

There are eight predefined elementary data types in ABAP: 1) Character string (C) 2) Numeric string....
Category: ABAP Date: 9/18/2009 9:46:25 PM
2 
Recent Answers
How do you declare destructor in c#?
kumar answered: by implementing finalize and dispose method