Questions tagged [alv]

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.

208 questions
0
votes
1 answer

Remove standard error message for check table in ALV grid

I'm using editable OO ALV to display some records from custom table. The key is matnr in ref table is MARA. User can insert new records or edit existing records. I need to check if matnr exists in MARA, if doesn't display err message. But because…
usesser
  • 191
  • 3
  • 21
0
votes
1 answer

Empty editable table abap

I need to display empty editable table in SAP (something like transaction SM30 when you want to insert new records). I know how to make editable table, but my problem is how to display empty table. I true with APPEND INITIAL LINE TO t_output but…
usesser
  • 191
  • 3
  • 21
0
votes
2 answers

Export to excel in SAP WebGui using ALV

I have a problem with SAP WEBGUI when I try to export my ALV in Excel file. So I used the button Local File. When I choose and I press confirm button, nothing happens. After this operation, any other button doesn't work. Can you help me? I'm using…
Darko
  • 1,448
  • 4
  • 27
  • 44
0
votes
1 answer

Display an itab in ALV List?

Currently my program writes out the results but I was hoping I can output into an ALV List. Am I able to use the function reuse_alv_list_display? Below is my code so far: REPORT Z_TRANSFORMER_TOOL_BATCH. TABLES zfit_map_account. TYPES: BEGIN OF…
Michael
  • 37
  • 2
  • 7
0
votes
1 answer

SQL statement return results into ALV table

I am fairly new to ABAP and wrote a SQL statement to return a list of items into an ALV. However when I execute the program, it returns nothing. Below is the code I wrote. I created a table type to show only the columns I needed in the results. …
Michael
  • 37
  • 2
  • 7
0
votes
1 answer

ALV data_changed with deleted rows

I want to access cell value in my ALV OOPS instance for a deleted row. LOOP AT er_data_changed->mt_deleted_rows INTO ls_del. CALL METHOD er_data_changed->get_cell_value EXPORTING i_row_id = ls_del-row_id i_fieldname = 'FIPEX' …
Darko
  • 1,448
  • 4
  • 27
  • 44
0
votes
1 answer

REUSE_ALV_GRID_DISPLAY changed to REUSE_ALV_LIST_DISPLAY

I'm having this problem. I'm calling a ALV report via SUBMITcommand. This report calls REUSE_ALV_GRID_DISLAY but when called, it shows a list like in REUSE_ALV_LIST_DISLAY. What are the possibles clauses?
Darko
  • 1,448
  • 4
  • 27
  • 44
0
votes
2 answers

Pass internal table into REUSE_ALV_FIELDCATALOG_MERGE

I've got lt_result table as result of function module, just a usual internal table with 50+ columns. So, I have to send that to ALV display, how to properly use that table as a source for REUSE_ALV_FIELDCATALOG_MERGE? CALL FUNCTION…
AlexanderK
  • 365
  • 7
  • 21
0
votes
2 answers

Enable standard toolbar for ALV grid

I created a screen for displaying ALV output but I am not able to show standard toolbar buttons (save, exit, back, etc.). Can any one suggest how to enable them? DATA: it_zztstudent type STANDARD TABLE OF zztstudent, it_fcat TYPE STANDARD…
0
votes
1 answer

ALV changing variants doesn´t apply filter

I have a problem with my own program. In this program the user has to enter data on the selection screen. There he can also choose one of the saved ALV variants. In the next step an ALV list will be shown with the selected data. Additionally the…
Christian Lendel
  • 410
  • 1
  • 4
  • 13
0
votes
3 answers

ALV is not refreshed after edit. Why?

I know my problem has been asked hundred times. But I still cannot find any suitable solution for me I have a dropdown, every time I change data in dropdown it will load new data based on dropdown data From step one, I refresh editable ALV Any…
yukou
  • 305
  • 3
  • 6
  • 17
0
votes
0 answers

ALV keep IS_VARIANT after refrest_table_display

I use variant of layout for my ALV_GRID Like that : FORM display_alv . DATA: lr_event TYPE REF TO lcl_zcad_0004, ls_varia TYPE disvariant. IF gr_alvpl IS NOT BOUND. PERFORM build_fieldcatalog. PERFORM…
shmoolki
  • 1,551
  • 8
  • 34
  • 57
0
votes
1 answer

Change order of table rows in a user-friendly way

Before starting development I'm looking for a standard way of doing something like that: I need to implement user-friendly way for ordering table rows in standard Dynpro ALV grid. I think it should look like a form where filter columns are defined,…
0
votes
1 answer

Delete row button in alv grid in sap

I am using function "REUSE_ALV_GRID_DISPLAY" in order to display a grid. My problem is that not all the buttons in ALV toolbar are displayed. For example, I can not see the "delete row" button. This is my call: CALL FUNCTION…
mary_kos
  • 1
  • 1
  • 3
0
votes
2 answers

No toolbar buttons when using SLVC_FULLSCREEN with REUSE_ALV_GRID_DISPLAY

I have written ABAP program by SAP Press book ABAP Basics listing 5.1. Everything is working fine except I am not able to display any icon for execute/delete operation which I added using slvc_fullscreen from reuse_alv_grid_display. I am not able to…
user1690861
  • 1
  • 1
  • 1