ALV stands for ABAP List Viewer. ALV provides a standard grid format and user interface to all ABAP reports. ALV is created by a set of standard function modules and classes provided by SAP.
Questions tagged [alv]
208 questions
-1
votes
1 answer
ALV tooltip in a single cell of a row. Possible?
It is possible to put a tooltip on a single cell of my alv? I know that it is possible in a column by a field catalog, but what about single cell?
I have ALV with icon like that, which is called via cl_gui_alv_gridv
I want information about this…

shmoolki
- 1,551
- 8
- 34
- 57
-1
votes
1 answer
Change it_outtab after the first display (ALV grid)
Is it possible to change the it_outtab, i.e the data of my alv without destroying it?
I know that to change the field catalog it is possible with this method:
CALL METHOD gr_alvpl->set_frontend_fieldcatalog
EXPORTING
it_fieldcatalog =…

shmoolki
- 1,551
- 8
- 34
- 57
-1
votes
1 answer
Create own menu_button in ALV toolbar
I have to create a menu_button in my ALV toolbar,
I searched in SCN and I found some examples.
I know that we have to create a button with the btn_type = 2
like that :
CLEAR: ls_buttn.
ls_buttn-icon = gi_livra.
…

shmoolki
- 1,551
- 8
- 34
- 57
-2
votes
1 answer
Blank Screen in ALV Report
I have created a screen 9000 for a program and I am trying to display to tables on top of each other using splitting container. Here is the code (copied):
REPORT zsam12.
DATA: i_t000 TYPE TABLE OF t000,
i_tcurr TYPE TABLE OF…

mj1261829
- 1,200
- 3
- 26
- 53
-2
votes
1 answer
SAP ABAP - Field Symbol Has not yet been assigned
I am trying to use table from another report program as in the following:
REPORT ZSAM3.
TYPES: BEGIN OF ty_report,
rec_acc TYPE skont,
vendor TYPE LFA1-LIFNR,
jan_deb TYPE BSEG-WRBTR,
jan_cred TYPE…

mj1261829
- 1,200
- 3
- 26
- 53
-2
votes
1 answer
How to create a Dynamic ALV based on months?
I have a requirement to display in an ALV Grid, quantities based on month wise, but only show the month columns that have at least one non-zero value.
Now, the ALV shows like this:
matnr 0101 0102 0103 ... 0110 0111 0112
----- …

PrisZhora
- 1
- 1
-2
votes
1 answer
Sap Abap Hierarchial report editing a column
Working on a program which I display an ALV report. Hereby in the ALV toolbar I have a button in order to display header info and when it's pressed it displays item info. When I want to go back, (BACK BUTTON) it does not sends me to selection…

Korca95
- 1
- 1
- 6
-2
votes
1 answer
filtering ALV gets fewer lines than expected
I have the following code which is not filtering columsn for radio buttons : btn4 and btn5.For radio buttons btn1 and btn3 is working fine.Do you have any ideea why? Cheers, Julian
SELECTION-SCREEN BEGIN OF BLOCK BLOCK2 WITH FRAME TITLE…

dragospirnut
- 13
- 1
- 8
-2
votes
2 answers
custom container
In SAP, can we have a push button on custom container in ALV. Is it possible or is there any other possibilities for that?
Please help me. Thanks in advance.

user162558
- 249
- 3
- 7
- 11
-3
votes
2 answers
Buttons Back, Leave and Cancel are inoperative in Hierarchical ALV
I display a hierarchical ALV. When I click the BACK or LEAVE or CANCEL buttons (in the toolbar), I'm supposed to go back or leave the program or cancel .
But when I click one of those buttons an additional row appends in the ALV hierarchy.
Any help…

Korca95
- 1
- 1
- 6
-3
votes
2 answers
get_selected_rows from alv after handler PAI logic
I have an ALV in container on screen 0100. It's created via class CL_SALV_TABLE.
The problem is that I can't get selected row via go_alv_dms->get_selections( )->get_selected_rows( ) after pressing a button on the screen (2 on the screenshot).
I can…

Nikito_Os
- 1
- 1
- 1
- 3
-4
votes
1 answer
How to extract the value of the field on user-command(click) for interactive ALV?
The below code is the form which will pop up the new window after clicking on the hotspot enabled field. I want to print the value of the field (hotspot enabled) that is clicked.
FORM user_command USING r_ucomm TYPE sy-ucomm
…

Atul Mittal
- 111
- 1
- 4
- 15
-5
votes
1 answer
Download selected records by using checkbox in ALV output
I am using this code to download selected records. But I am unable to do that. What am I doing wrong?
FORM ZUCOMM USING LV_OKCODE TYPE SY-UCOMM
SEL_FIELD TYPE SLIS_SELFIELD.
CASE LV_OKCODE .
WHEN 'DOWN' .
* REFRESH…

user3553227
- 1
- 1
- 1