Friday, March 28, 2014

ALV Reports Interview Questions in SAP ABAP


Interview Questions on ALV in SAP ABAP
SAP ALV Report Interview Questions, ALV Interview Questions in SAP ABAP, Interview Questions on ALV in SAP ABAP, ABAP List Viewer Interview Questions.

ALV: Displaying data in the form of ALV format (List or Grid) is called ALV reports. The main advantage of ALV reports in SAP ABAP are better look and feel and many number of predefined options.


ALV Reports Interview Questions in SAP ABAP

Here www.sapabapiq.com presenting list of real time interview questions on ALV Reports in SAP ABAP, read these questions and prepare your own answers to crack interviews, it will be good practice for you. Read how to upload data excel file to ALV report

Interview Questions on ALV Reports in SAP ABAP



1)    What is ALV in SAP ABAP?


2)    What are the Limitations of ALV grid display?


3)    What are the ways to sort data shown in an ALV List.


4)    Tell some function modules which are used in your project?



5)    How do we display an ALV report in List format?


6)    How can you handle the events in ALV?


7)    What is the use of REUSE_ALV_COMMENTARY_WRITE ?


8)    Describe a few of the import parameters in function module REUSE_ALV_LIST_DISPLAY.




9)    What is a type group in SAP ABAP?



10)      What are the contents of SLIS type-group?


11)      Which type group has to be compulsorily declared in a report program using ALV?


12)      What types of display can be achieved using ALV in SAP ABAP?


13)      What is the use of function module ‘REUSE_ALV_      VARIANT_F4’?


14)      What are the important parameters to be passed to the above function modules?


15)      What is the process of creating a blocked list display in SAP ABAP?


16)      How do we display header – item kind of data in a list?


17)      How do we display a list as a separate popup window in SAP ABAP?


18)      What is the function module used to print data in the List Header?


19)      What is the use of REUSE_ALV_COMMENTARY_WRITE. ?


20)      How do we find list of possible events for a list type?


21)      What is a field catalog in SAP ABAP?



22)      What are the properties of field catalog in SAP ABAP?



23)      What is the purpose of function module ‘REUSE_ALV_FIELD_CATALOG_MERGE’ in SAP ABAP?



24)      What are some of the events that can be populated into the IT_EVENTS table?



25)      How many Events are available in ALV?



26)      How is AVL List different from ALV Grid in SAP ABAP?



27)      When and how do we use the parameter IT_EVENTS?



28)      In what cases is it not necessary to pass the field catalog?




29)      How to display ALV list in Grid Format?



30)      What is the result if we pass a field catalog and also a standard table type in I_STRUCTURE_NAME?



31)      What is the use of ‘HOTSPOT’ in SAP ABAP?



32)      What is Emphasize and what is the use of it?



33)      What is ZEBRA in SAP ABAP?



34)      What is colwidth_optimize in SAP ABAP?



35)      How can you perform totals in ALV?


36)      How do you calculate sub totals in ALV reports?

"You found the information helpful and want to say thanks? Your donation is enough to inspire us to do more. Thanks a bunch!"

20 comments:

yeshu said...

33) ZEBRA means nothing but to display the output in ZEBRA FORMAT that is one line in one color the following line in another color just like animal ZEBRA

yeshu said...

1) ALV means ABAP LIST VIEWER which is used to display the output in GRID format or LIST format and also ALV contains various events and fieldcatalogs to enhance the output result as we wish.

yeshu said...

3) There are only two ways to sort the data i.e either in ASCENDING ORDER or in DESCENDING ORDER

yeshu said...

4) REUSE_ALV_GRID_DISPLAY
REUSE_ALV_LIST_DISPLAY
REUSE_ALV_COMMENT_WRITE
REUSE_ALV_BLOCK_LIST_INT
REUSE_ALV_BLOCK_LIST_DISPLAY
REUSE_ALV_BLOCK_LIST_APPEND
REUSE_ALV_HIERSEQ_LIST_DISPLAY
REUSE_ALV_FIELDCATALOG_MERGE

yeshu said...

19) Used to write comment on top of the each page and end of the each page.

yeshu said...

12) GRID & LIST DISPLAY

yeshu said...

13) Browse for the file name

yeshu said...

14) file type as 'DAT' and internal table name

yeshu said...

21) Fieldcatalog is nothing but to enhance the output in our desired format like adding colors, hotspot, position and etc

yeshu said...

22) COL_ POS
FIELD NAME
SELTEXT_S/M/L
EMPHASIZE
TABNAME
HOTSPOT
EDIT
NO_SIGN
NO_ZERO
NO_OUT
DO_SUM
OUTPUT_LEN

yeshu said...

23) This is used to fill the field catalog internal table

yeshu said...

25) They are of 6 types

TOP_OF_PAGE
TOP_OF_LIST
END_OF_PAGE
END_OF_LIST
USER COMMAND
PF_STATUS_SET

yeshu said...

GRID LIST
---- ----

THIS IS SLOWER THIS IS FASTER

IT SUPPORTS OOPS ALV IT DONT

LOGO AND EDIT OPTION NOT POSSIBLE
POSSIBLE

I= F1 HELP I= NO: OF RECORDS

OUTPUT IN GRID FORMAT OUTPUT IN LIST FORMAT

yeshu said...

26)

THIS IS SLOWER / THIS IS FASTER

IT SUPPORTS OOPS / ALV IT DONT

LOGO AND EDIT OPTION / NOT POSSIBLE
POSSIBLE

I= F1 HELP / I= NO: OF RECORDS

OUTPUT IN GRID FORMAT / OUTPUT IN LIST FORMAT

yeshu said...

31) HOTSPOT = HAND SYMBOL

yeshu said...

32) EMPHASIZE = COLOUR

yeshu said...

34) To declare the length of the column

loverboy said...

3> LOVERBOY

** SORTING :

DATA : IT_SORT TYPE SLIS_T_SORTINFO_ALV,
WA_SORT TYPE SLIS_SORTINFO_ALV.

perform populate_sort.
form populate_sort .

wa_sort-spos = '1'.
wa_sort-tabname = 'IT_MAIN'.
wa_sort-fieldname = 'BUKRS'.
wa_sort-up = 'X'.
append wa_sort to it_sort.

endform. " populate_SORT



******* DISPLAY :


call function 'REUSE_ALV_GRID_DISPLAY'
IT_SORT = IT_SORT

sumitgupta said...

2. you cannot have more than 255 columns in ALV.

The max list width is 1023 Characters.
So that will be the Limit for Single Column also.

sumitgupta said...

5. call function 'REUSE_ALV_LIST_DISPLAY'
exporting
i_callback_program = gd_repid
* i_callback_user_command = 'USER_COMMAND'
* i_grid_title = outtext
is_layout = gd_layout
it_fieldcat = fieldcatalog[]
* it_special_groups = gd_tabgroup
IT_EVENTS = GT_EVENTS
i_save = 'X'
* is_variant = z_template

tables
t_outtab = it_ekko
exceptions
program_error = 1
others = 2.
if sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.

Post a Comment

Note: Only a member of this blog may post a comment.

Categories

ABAP (1) ABAP Interview Questions (112) ABAP Open SQL Statements (1) ABAP Syntax Rules (6) ABAP WORKBENCH (2) ABAP-Interview-Questions (52) ALE IDOC (6) ALE IDOC Interview Questions (6) ale-idoc (6) ALE-IDOC-Interview-Questions (19) ALV Interview Questions (5) ALV-Interview-Questions (22) BADI (2) BAPI (1) BAPI Interview Questions (1) BAPI-Interview-Questions (14) BDC (6) BDC Interview Questions (6) BDC-Interview-Questions (9) big data (2) big data interview questions (1) Classical Reports Interview Question (3) Classical-Reports-Interview-Questions (22) Conditional Statements (1) Cross Applications (3) Cross-Applications (14) Data Dictionary (22) Data Type Questins (1) Data types (1) Data-Dictionary (48) Data-Type-Questins (6) Dialog programming (5) Dialog Programming Interview Questions (4) Dialog-Programming (30) DOMAIN Interview Questions (1) Domain-Interview-Questions (8) Function Module (2) hadoop (2) hadoop interview questions (2) hdfs (1) IDoc Tutorials (6) Interactive Report Interview Questions (4) Interactive-Reports-Interview-Questions (22) Internal Tables (1) interview questions (1) Lock Object Interview Questions (1) Lock-Objects-Interview-Questions (10) Logical Database (1) Modularization Interview Questions (4) Modularization-Interview-Questions (25) Module Pool Programming (5) Module-Pool-Programming (39) modules in sap (1) Object Oriented ABAP (19) Object Oriented ABAP Interview Questions (15) object-oriented-abap (2) Object-Oriented-ABAP-Interview-Questions (34) OOABAP (9) Reports (14) Reports Interview Questions (9) Reports-Interview-Questions (19) RFC (1) RFC Interview Questions (1) RFC-Interview-Questions (14) RICEF (1) RICEF Objects (1) SAP (4) SAP ABAP (4) SAP ABAP Interview Questions (42) SAP ABAP Introduction (46) SAP ABAP Message Types (2) SAP BADI Interview Questions (2) SAP Basics (71) SAP Books (2) SAP Certification (1) SAP CONSULTANTS (5) SAP CRM (1) SAP ENHANCEMENTS (3) SAP EXITS (2) SAP EXITS ( SAP ENHANCEMENTS ) Interview Questions (1) SAP Free Books (1) SAP HR (2) SAP Lock Object (1) sap modules (2) SAP Open SQL Statements (1) SAP R/3 Architecture (4) SAP Search help (1) SAP Smartforms (1) SAP Smartforms Interview Questions (2) SAP Tables (5) SAP Tcodes (10) SAP Views (1) SAP Webdynpro ABAP (12) SAP Work Processors (2) SAP Workflow (3) SAP-BADI-Interview-Questions (11) SAP-Enhancements (39) SAP-Exits (39) SAP-Exits-Enhancements-Interview Questions (3) SAP-HANA (1) SAP-HANA-Interview-Questions (1) SAP-Smartforms-Interview-Questions (2) SAP-Workflow (3) Scripts (3) Scripts Interview Questions (2) Scripts-Interview-Questions (32) Search Help Interview Questions (1) Search-Help-Interview-Questions (9) Smartforms (1) Table Maintenance Generator (1) Table-Maintenance-Generator (4) Tables in SAP (2) Tables Interview Questions (3) Tables-Interview-Questions (3) Type Group Interview Questions (1) Type-Group-Interview-Questions (7) Variable Declaration (1) Views Interview Questions (1) Views-Interview-Questions (5) Webdynpro (12) what is big data (1)

Protected Blog

 
This blog is not affiliated to SAP AG |SAP is trademark of SAP AG |The information collected from various sources use information with your own risk.