100% found this document useful (1 vote)
1K views

ALV Report Interview Question

This document contains questions and answers about ALV (ABAP List Viewer) reports in SAP. Key points include: - ALV provides a standard list format and interface for ABAP reports. It uses function modules from SAP. - ALV reports allow sorting, filtering, totals, downloading output, changing column order/hiding columns. - The field catalog defines how data is presented in the report and can be built automatically, manually, or semi-automatically. - The SLIS type library contains table types used for ALV grids like layout tables and event tables. - Variants store display preferences and the default variant is retrieved using REUSE_ALV_

Uploaded by

Mayur Odedara
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
1K views

ALV Report Interview Question

This document contains questions and answers about ALV (ABAP List Viewer) reports in SAP. Key points include: - ALV provides a standard list format and interface for ABAP reports. It uses function modules from SAP. - ALV reports allow sorting, filtering, totals, downloading output, changing column order/hiding columns. - The field catalog defines how data is presented in the report and can be built automatically, manually, or semi-automatically. - The SLIS type library contains table types used for ALV grids like layout tables and event tables. - Variants store display preferences and the default variant is retrieved using REUSE_ALV_

Uploaded by

Mayur Odedara
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

ALV Report

1. Question 1. What Is Alv?


ALV stands for ABAP List Viewer. ALV gives us a standard List format and user
interface to all our ABAP reports. ALV is created by a set of standard function
modules provided by SAP.
2. Question 2. What Are The Uses Of Alv Reports?
o Sorting of records
o Filtering of records
o Totals and Sub-totals
o Download the report output to Excel/HTML
o Changing the order of the columns in the report
o Hide the unwanted columns from the report
3. Question 3. What Is Field Catalog In Sap Alv?
o We have the following three ways to build a field catalog.
o Automatically through a Data Dictionary structure.
o Manually in ABAP program.
o Semi-automatically by combining the above two procedures.
o Declare an internal table of type SLIS_T_FIELDCAT_ALV.
o Call function module REUSE_ALV_FIELDCATALOG_MERGE.
4. Question 4. What Is Slis In Alv And Standard Type Tables Of It?
SLIS is the type library for ALV grid.
If you'll use the ALV you have to add TYPE-POOLS : SLIS. command at the
beginning of your code.
o SLIS_LAYOUT_ALV,
o SLIS_T_FIELDCAT_ALV
o SLIS_T_LISTHEADER,
o SLIS_T_EVENT,
o SLIS_SELFIELD.
5. Question 5. How Do You Define Default Variant For Alv?
he user can programmatically set the initial (default) variant for list display.
The default variant can be found using the function module
'REUSE_ALV_VARIANT_DEFAULT_GET'.
6. Question 6. What Is The Events Table In Alv?
A list of possible events is populated into an event table (I_EVENTS) when this
table is passed from the function module REUSE_ALV_EVENT_NAMES_GET. The
return table from this function module contains all the possible events.
7. Question 7. What Are Layout Parameters Options Of Alv?
Display options:
o Exceptions
o Totals
o Interaction
o Detail screen
o Display variants (only for hierarchical-sequential lists)
o Color
o Other
8. Question 8. What Is Sort Internal Table Options In Alv?
This internal table has the following fields:
Sops: Sort sequence.
Fieldname: Internal output table field name.
Tab name : Only relevant for hierarchical-sequential lists. Name of the internal
output table.
Up: 'X' = sort in ascending order.
Down: 'X' = sort in descending order.
Sub tot : 'X' = subtotal at group value change.
Group: '* ' = new page at group value change ,'UL' = underline at group value
change.
9. Question 9. What Is The Main Function Module Of Alv Report?
REUSE_ALV_GRID_DISPLAY
10. Question 10. What Are The Export Parameters Of Alv Reports Function
Modules?
E_EXIT_CAUSED_BY_CALLER: Delete list in CALLBACK_USER_COMMAND
ES_EXIT_CAUSED_BY_USER: How the user left the list Tables
T_OUTTAB: Table with data to be displayed ---mandatory
11. Question 11. What Is A Report?
There are 2 type of reports:
o Interactive report
o Classic reports
In classic reports, we can see the output in single list where as in interactive
reports we can see the output in multiple lists.
o Question 12. What Are Classical Reports?
These are the most simple reports. Programmers learn this one first. It is just an
output of data using the Write statement inside a loop.
Classical reports are normal reports. These reports are not having any sub
reports. IT IS HAVING ONLY ONE SCREEN/LIST FOR OUTPUT.
Events In Classical Reports:
INTIALIZATION: This event triggers before selection screen display.
AT-SELECTION-SCREEN: This event triggers after processing user input still
selection screen is in active mode.
START OF SELECTION: Start of selection screen triggers after processing
selection screen.
END-OF-SELECTION: It is for Logical Database Reporting.
o Question 13. What Are The Interactive Reports?
The user can Interact with the report. We can have a drill down into the report
data.
We can have a basic list (number starts from 0) and 20 secondary lists (1 to 21).
Events associated with Interactive Reports are:
o AT LINE-SELECTION
o AT USER-COMMAND
o AT PF<key>
o TOP-OF-PAGE DURING LINE-SELECTION.
HIDE statement holds the data to be displayed in the secondary list.
sy-lisel : contains data of the selected line.
sy-lsind : contains the level of report (from 0 to 21)
Interactive Report Events:
AT LINE-SELECTION : This Event triggers when we double click a line on the list,
when the event is triggered a new sub list is going to be generated. Under this
event what ever the statements that are been return will be displayed on newly
generated sub list.
AT PFn: For predefined function keys...
AT USER-COMMAND : It provides user functions keys.
TOP-OF-PAGE DURING LINE-SELECTION : Top of page event for secondary list.
o Question 14. How Many Types Of Tables Are There In Data
Dictionary And What They?
o Transparent table
o CLUSTER Cluster table
o POOL Pooled table
o Question 15. What Are Pricing Tables?
Pricing Tables starts with A* like A001, A002, A900 like that.
o KONH – Condition Header
o KONP – Condition Detail
o Question 16. What Is A Table Maintenance Generator?
To allow users to maintain table using SM30 transaction you use Table
Maintenance generator.
o Question 17. What Is The Difference Between Client Dependent And
Independent Tables?
If you have MANDT as the first field that is Client Dependant table otherwise it is
not. Usually most of the tables are client dependent. Only few like RFC
Connections table (RFCDES), Batch Jobs (TBTCO and TBTCP) are not client
dependant.
o Question 18. What Is The Difference Between At Selection Screen
And At Selection Screen Output?
Answer :
AT SELECTION-SCREEN OUTPUT is like Process Before Output Event. This would
get triggered before screen is displayed. This can be used to make fields
invisible/visible based on selection.
AT SELECTION-SCREEN: This would be triggered if you hit anything (Enter, Drop-
Down, Help, Execute) after the selection screen is displayed.
o Question 19. What Is The Difference Between Clear, Refresh?
CLEAR: It clears any field, structure or Header line of internal table.
REFRESH: Deletes all entries of internal table.
o Question 20. In Alv's How Would You Get Default Values In The
Selection Screen?
Create a variant in the ALV Report with whatever columns you would like to see
and set sort criteria and column widths and save as a default variant.
You could get the default variant by calling FM
REUSE_ALV_VARIANT_DEFAULT_GET
o Question 21. What Are The Steps To Create Custom Table?
o Create all the Domains and Data elements as needed using Txn SE11.
o Start creating the table using Tcode SE11.
o Maintain Delivery Class (A-Application Table, C-Customizing, etc)
o Enter all the fields (MANDT must be the first field) and appropriate
data elements or Built in Types for each field.
o Make sure you select the Primary Key for this table.
o Maintain the Technical Settings (Data class, Size, Buffering info)
o Create Secondary indexes as needed
o Activate the Table
o Question 22. How To Set Hotspot In Alv Reports For A Field?
In the Field Catalog table, you set the HOTSPOT property of the field to X.
o Question 23. What Is Use Of Reuse_alv_fieldcatalog_merge?
Using this function module, you can get the Field catalog for a given Internal table
or DD Structure. Once you get the Field catalog, you could change the properties
of each field.
o Question 24. What Is Significance Of Hide?
In Interactive reports, HIDE statement stores the value of that field for that line. If
the user places the cursor on a line and click on something those values are
automatically populated to that hidden fields.
o Question 25. What Is The Difference Between Select Single And
Select Up To One Row?
SELECT SINGLE can be used if you know the full key to select a record. If you do
not have the full Key to select and you are interested in one single row, you could
use SELECT UPTO 1 ROWS. If you use a SELECT SINGLE without a full key, you
would get a warning message in Extended Program checks.
If you have the full Key use SELECT SINGLE
If you do not have the full Key to select and you are interested in one single row,
you could use SELECT UPTO 1 ROWS..
o Question 26. What Is The Secondary Index?
There is an Index created by default for the Primary Key of the table and that is
called Primary Index. If you create, any other index that is called Secondary Index
for that table. Secondary Indexes are created to improve the performance of
SELECT statements.
o Question 27. How To Create Secondary Index?
Using SE11, Enter the table name and click on Change.
Click on Indexes and select fields and create a secondary index. Note: Always try
to include MANDT as the first field unless you have a reason..
o Question 28. How Do You Modify A Table?
You can modify a record using MODIFY statement or UPDATE Statement.
o Question 29. What Is An Abap Memory And Sap Memory And How To
Use Them?
ABAP memory is a memory area that all ABAP programs within the same internal
session can access using the EXPORT and IMPORT statements.
SAP memory is a memory area to which all main sessions within a SAPgui have
access. You can use SAP memory either to pass data from one program to
another within a session, or to pass data from one session to another. Application
programs that use SAP memory must do so using SPA/GPA parameters (also
known as SET/GET parameters).
o Question 30. When The Top-of-page Event Does Get Triggered?
TOP-OF-PAGE event will be triggered when the first ULINE, WRITE or SKIP
statement occurs in a program.
o Question 31. What Is The Difference Between Skip And Reserve?
SKIP provides empty space between lines, while RESERVE executes a page break
on the current page if the number of lines between current line and the page
footer is less than the number specified in RESERVE statement.
o Question 32. What Is The Difference Between Skip And New-line?
SKIP generates a blank line, while the NEW-LINE causes the control to move to
next line.
o Question 33. Can We Set Page Headers To Details Lists?
Yes. Use TOP-OF-PAGE DURING LINE-SELECTION event.
o Question 34. What Are Oss Notes?
SAP provides support in the form of Notes also and this is called OSS. Can check
the link Sree provided.
Just for an example if you face any error in your system. Then there is error
number associated with the error. Then you can search for the OSS not for the
error number, and the note will give you possible solution to your problem.
o Question 35. What Is The Command To Be Used To Transfer The Data
From One Internal Table To Another Internal?
Move itab1 to itab2
We can use APPEND for copying data from one ITAB to another ITAB by keeping
in a loop. But it is not efficient. Instead we can use as follows:
ITAB1[]=ITAB2[].
o Question 36. How Can Validate Input Values In Selection Screen And
Which Event Was Fired?
At selection-screen is an event, which is used to validate the selection screen
input fields, if you want to validate the particular input field we use at selection-
screen on event.
AT SELECTION-SCREEN ON event is used to validate input.
o Question 37. What Is The Difference Between Data Element And
Domain?
Data element is the collection of domain with short description, whereas domain
is collection of datatype and length.
Domain contains only technical attributes (data type , size) where as Data
Element contains Technical attribute as well as Semantic attributes(Field
description).
o Question 38. What Is The Difference Between Internal Table With
Header Line And Without Header Line?
Internal table with header line is nothing but work area name as well as internal
table name is same, whereas internal table without header line is nothing but work
area name as well as internal table name is different.
FOR INTERNAL TABLE WITH HEADER we need not create work area. But not
advisable because the user may get confused what is work area and what is
internal table since they both will be having same names.
o Question 39. Which Is The First Event That Is Triggered In A Report?
Load of program is the first triggering event in the classical reports, where as
abaper point of view initialization is the first triggering event.
LOAD-OF-PROGRAM which gets triggered internally in the SAP system, then the
event INITIALIZATION gets trigger.
o Question 40. What Is Binary Search?
Binary search is a searching algorithm in which the whole data in spitted into two
parts and searching is started from one of the part. In normal search data is
searched linearly from top to bottom which is less efficient than binary search.
Binary search is used to get the more data from internal table instead of linear
search ,and binary search is the faster and efficient .
o Question 41. While Printing, 10 Columns Are Printing In First Page
And The Next 4 Cols In Next Page, How Do U Resolve This To Accommodate All
The 14 Columns In A Single Page?
o ot line size .. increase line-count
o line-size means width of line
o line-count means no. of lines per page.
o Question 42. What Events Are Mandatory In Reports?
Report dont need any event to execute the output.It we we put start-of-selection
there is no compulsory to use end-of-selection. End-of-selection is used when we
want to execute some output even when some exception occurs to skip start-of-
selection.
There is no mandatory event in the report program. however, if we don't explicitly
write any event, system implicitly starts with start of selection event.In case of
database selection, it is a good practice of use end-of-selection event.
o Question 43. What Is The Transaction Code Sm 31?
SM31 is a new version of the t-code SM30.
SM30 - Call view maintenance & views for SAP tables.
SM31 - used for maintenance for SAP tables.
o Question 44. What Are Text Elements?
Text elements makes program easier to maintain program texts in different
languages. These are used for maintaining list headers, selection texts in
programs.
o Question 45. Explain Check Table And Value Table?

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.

You might also like