How to add Dropdown functionality in the ALV report
REPORT Example.
*Data Declaration
TYPES: BEGIN OF ty_ekko,
ebeln TYPE ebeln,
bukrs TYPE bukrs,
ekorg TYPE ekorg,
END OF ty_ekko.
DATA : gt_ekko TYPE TABLE OF ty_ekko,
gs_ekko TYPE ty_ekko.
*Custom Container
DATA: r_c...
vidi.hashnode.dev2 min read
Soothfy App
Find Calm In Chaos
The provided code demonstrates how to display an ALV (ABAP List Viewer) using a custom container in an SAP program. It defines data structures for the EKKO table, sets up a custom container and ALV grid, and populates a dropdown list in one of the columns. Key steps include creating the custom container, defining the field catalog with the dropdown handle, filling the dropdown values, and finally displaying the ALV grid on a screen with the dropdown enabled in the specified column.