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
1
vote
1 answer

Styles for colors, emphasis, underline in ALV

We are trying to manipulate the alv grid class to get result like in Sap Agenda (SSC1 tcode) i.e. to merge columns and rows. We found that the class cl_calendar_control_schedule with the method display handles that and we are working to understand…
shmoolki
  • 1,551
  • 8
  • 34
  • 57
1
vote
1 answer

Export alv report to excel

I have got a big problem with exporting ALV report to an Excel file. I do not know if there are any standard functions of unloading ALV report to Excel. I want implement this function as a special button. Is it possible?
user3493004
  • 85
  • 4
  • 12
1
vote
2 answers

Web Dynpro ALV conditionally editable cells

The problem is I want that some cell of checkbox column in my WD ALV will be editable some cell will be non editable depending on some property. I make next steps to achieve the required result: 1) Add attribute READONLY type WDY-BOOLEAN to the…
user2542456
  • 81
  • 2
  • 11
1
vote
1 answer

Sort ALV grid by inverted date

I had a need to output TCURR table into ALV grid. All went fine but when user sorts table by "valid from" date (GDATU) strange things happened. Sorting in ascending order behaves as sorting in descending order and vice versa. This is so because…
Suncatcher
  • 10,355
  • 10
  • 52
  • 90
1
vote
2 answers

Table is not showed in the correct form on Outlook

I have an ABAP ALV that shows some data. I need to send the outputed ALV to an email. For now, it works for every email that was sent, except in Outlook. I was told that I need to use something in the tag on the ABAP. Here's the code: loop at…
Eva Dias
  • 1,709
  • 9
  • 36
  • 67
1
vote
1 answer

What is the difference between class alv and function alv

We are using class alv and function alv, what is the difference between those options?
Merve Gül
  • 1,377
  • 6
  • 23
  • 40
1
vote
3 answers

How to exclude unnecessary buttons in ALV toolbar?

So, inside the TOOLBAR event of the CL_GUI_ALV_GRID the parameter E_OBJECT has the table MT_TOOLBAR that I can access to change all the buttons manually. Is there a better way to include/exclude standard buttons in the toolbar than simply creating…
vlad-ardelean
  • 7,480
  • 15
  • 80
  • 124
0
votes
0 answers

How to make ALV subtotal lines editable or any workaround?

In an ABAP program, I need to provide a way for the users to change the value of all cells belonging to a group at once. CL_GUI_ALV_GRID does not allow to make cells of subtotal lines editable. An ALV tree view does not allow editing of nodes…
Cutter
  • 1,673
  • 7
  • 27
  • 43
0
votes
1 answer

How to signal that some fields from a DDIC structure are intended to be hidden or "technical" in an ALV?

My goal is to make a dynamic ALV whose field catalog is based on a custom DDIC structure that is passed to it. I want some fields of my DDIC structure to be hidden in the ALV but I should not hardcode any specific field to be hidden or technical,…
Cutter
  • 1,673
  • 7
  • 27
  • 43
0
votes
0 answers

How can I use the buttons on the ALV on the FIORI screen?

In the planning cockpit, in the part where the freight orders are received, the ALV in the same ZTM**** transaction code is requested to arrive as it came. How exactly can I do it? In other words, the same thing is requested for documents with 45…
0
votes
1 answer

Dynamically read the columns / positions of an ALV list layout into internal table

I have an ALV list as an output of the program and need to be able to dynamically get / fetch the columns and their positions. The users can also save the columns / positions as a layout for future use and I want to get this information for the…
Bigflatfoot
  • 45
  • 2
  • 13
0
votes
1 answer

ALV column titles i18n?

I want to translate the text columns of an ALV-Grid into different languages. For example I have following code: alv->get_columns( )->get_column( 'REVENUE' )->set_short_text( 'Revenue' ) ##NO_TEXT. alv->get_columns( )->get_column( 'REVENUE'…
schmelto
  • 427
  • 5
  • 18
0
votes
2 answers

Multiple selection of rows in ALV Grid

I need to enable multiple selection of rows in ALV grid (especially REUSE_ALV_GRID_DISPLAY). Currently to select more than one row, I'm using Ctrl + select rows. Is there any other way we can use? I'm using ABAP on ECC.
0
votes
1 answer

Set optimize for a single column via REUSE_ALV_GRID_DISPLAY?

I need to modify an old report using REUSE_ALV_GRID_DISPLAY. The requirement is that all columns are optimized except for one. As far as I can tell, i can only set optimization for all with layout-colwidth_optimize. Is there a way to deactivate…
Kevin Holtkamp
  • 479
  • 4
  • 17
0
votes
1 answer

How to modify double click on ALV event?

Hi guys! I found a program on the internet that runs row details when I double-click the 'CARRID' cell on ALV. How to rewrite this code so that the details are displayed no matter what cell in the table I click, not only in 'CARRID'? CLASS…
Abapito
  • 73
  • 7