Interactive ALV

 * INTERACTIVE ALV-REUSE_ALV_GRID_DISPLAY*  type-pools : slis. types : begin of ty_flight,         carrid type sflight-carrid,         connid type sflight-connid,         fldate type sflight-fldate,         price

Continue reading

Rate this:

ABAP List Viewer(ALV) – 2

*ALV USING FM – REUSE_ALV_GRID_DISPLAY_LVC*   data : itab type table of vbak. start-of-selection. select * from vbak into table itab UP TO 20 ROWS . end-of-selection. CALL FUNCTION ‘REUSE_ALV_GRID_DISPLAY_LVC’  EXPORTING    I_CALLBACK_PROGRAM        = SY-CPROG    I_STRUCTURE_NAME             = ‘VBAK’   TABLES     T_OUTTAB                          = ITAB. Output-  

Continue reading

Rate this:

1 107 108 109 110 111 113