ALV Report Interview Question
ALV Report Interview Question
o Check table works at table level and value table works at domain
level.
o Check table is nothing but master table that u will create with valid set
of values.
o Value table it provides the list of values and it will automatically
proposed as a check table while creating foreign key relationship.
o Question 46. How Many Types Of Standard Internal Tables?
STANDARD TABLE: The key is, by default, set to NON-UNIQUE. You may not use
the UNIQUE addition.
SORTED TABLE: Unlike standard tables, sorted table have no default setting for
the uniqueness attribute. If you do not specify either UNIQUE or NON-UNIQUE, the
system defines a generic table type, where uniqueness is irrelevant. You can use
generic types to specify the type of generic subroutine parameters.
HASHED TABLE: Hashed tables have no default setting. You must use the
UNIQUE addition with hashed tables. You may not use NON-UNIQUE.
o Question 47. What Is Refreshing In Internal Table?
'Refresh' is the keyword which clears the contents of an internal table body.
o Question 48. What Is The Difference Between Collect And Sum?
COLLECT allows you to create unique or summarized datasets. The system first
tries to find a table entry corresponding to the table key. The key values are taken
either from the header line of the internal table itab, or from the explicitly-specified
work area.
If the system finds an entry, the numeric fields that are not part of the table key
(see ABAP number types) are added to the sum total of the existing entries. If it
does not find an entry, the system creates a new entry instead.
o Question 49. What Are The Ways Of Creating Tables?
There are two ways to create table
o Top-down approach
o Bottom-up approach
o Question 50. What Is The Significance Of A Stacked List?
The secondary list is also called the stacked list and it will be shown on the entire
screen if we don’t write its coordinates of the command window.
o Question 51. When It’s The Right Time To Utilize The Command Get
Cursor In Interactive Lists?
The command GET CURSOR will be utilized when the hidden information is not
enough for tracing the selected line.
o Question 52. How Do We Describe Start –of-selection And End-of-
selection?
The start and the finish of the main processing logic, which is default for every
ABAP/4 application; the statements from START-OF-SELECTION to END-OF-
SELECTION are executed automatically, there is no requirement for having END-
OF-SELECTION. Every procedural statement in ABAP applications are dependent
by default on the START-OF-SELECTION.