Posts

Showing posts with the label ALV

Drop Down In ALV

    Displaying Drop down in ALV : *Fetching reason code and description     SELECT reason,spra,description       FROM ztmnp_dis_reason       INTO TABLE @DATA(lt_disposal_rsn)       WHERE spra = @sy-langu. *Adding reason code description to the dropdown     LOOP AT lt_disposal_rsn INTO DATA(ls_disposal_rsn).       ls_dd-handle = '1'.       CONCATENATE ls_disposal_rsn-reason ls_disposal_rsn-description                 INTO ls_dd-value SEPARATED BY '-'.       APPEND ls_dd TO lt_dd.       CLEAR:ls_dd.     ENDLOOP.     CALL METHOD lo_alv->set_drop_down_table       EXPORTING         it_drop_down = lt_dd.   ...

OOPS ALV: ALV using Docking Container

  ALV Using Docking Container: Draw a custom container in screen and give a name DATA : go_docking TYPE REF TO cl_gui_docking_container ,       go_grid          TYPE REF TO cl_gui_alv_grid .   IF go_docking IS INITIAL . * Create docking container and dock at left side     CREATE OBJECT go_docking       EXPORTING         parent                       = cl_gui_container => screen0         side                         = cl_gui_docking_container => dock_at_left         ratio             ...

POP UP Using REUSE_ALV_GRID_DISPLAY

Image
  ***&---------------------------------------------------------------------* ***& Report ZVB_ALV_POPUP ***&---------------------------------------------------------------------* ***& ***&---------------------------------------------------------------------* REPORT  zvb_alv_popup1 . TYPE-POOLS : slis . TABLES : vbak . TYPES : BEGIN  OF  ty_vbak ,         vbeln  TYPE  vbak - vbeln ,         erdat  TYPE  vbak - erdat ,         erzet  TYPE  vbak - erzet ,                                                                                               ...