Skip to Content
0
Former Member
Aug 13, 2007 at 07:14 AM

ALV and factory

47 Views

Have code.

 DATA: ALV TYPE REF TO cl_salv_table. 

  cl_salv_table=>factory( 
  IMPORTING r_salv_table = alv 
  CHANGING t_table = itab[] 
  ). 
  ALV->set_screen_popup( 
  start_column = 5 
  end_column = 150 
  start_line = 1 
  end_line = 15 
  ). 
  alv->Display( ).

Nice method fast show table in dialog.

I wanna append in dialog box button Cancel.

And after alv->Display( ). read index selected row. If press OK.

Its real?