REPORT z17_18 .
*----------------------------------------------------------------------*
* CLASS lcl_handle_events DEFINITION
*----------------------------------------------------------------------*
class lcl_handle_events definition.
public section.
methods:
on_link_click for event link_click of cl_salv_events_table
importing row column.
endclass. "lcl_handle_events DEFINITION
*----------------------------------------------------------------------*
* CLASS lcl_handle_events IMPLEMENTATION
*----------------------------------------------------------------------*
class lcl_handle_events implementation.
method on_link_click.
perform show_cell_info using row column 'Host spot 클릭하였습니다.'.
endmethod. "on_double_click
endclass. "lcl_handle_events IMPLEMENTATION
data gt_itab type table of sflight.
data gr_table type ref to cl_salv_table.
data gr_event type ref to lcl_handle_events.
data gr_columns type ref to cl_salv_columns_table.
data gr_column type ref to cl_salv_column_table.
start-of-selection.
select * from sflight into table gt_itab
up to 25 rows.
cl_salv_table=>factory(
importing
r_salv_table = gr_table
changing
t_table = gt_itab ).
gr_columns = gr_table->get_columns( ).
gr_column ?= gr_columns->get_column( 'CARRID' ).
gr_column->set_cell_type( if_salv_c_cell_type=>hotspot ).
data lr_event type ref to cl_salv_events_table.
lr_event = gr_table->get_event( ).
create object gr_event.
set handler gr_event->on_link_click for lr_event.
gr_table->display( ).
*&---------------------------------------------------------------------*
*& Form SHOW_CELL_INFO
*&---------------------------------------------------------------------*
form show_cell_info using p_row type i
p_column type lvc_fname
p_text type string.
data: l_row type char10.
write p_row to l_row left-justified.
concatenate l_row '번째 라인의' p_column '컬럼을' p_text
into p_text separated by space.
message i000(0k) with p_text.
endform. " show_cell_info
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
651 | REPORT z17_21 . | sapjoy | 2012.08.02 | 2512 |
650 | REPORT z17_20 | sapjoy | 2012.08.02 | 2907 |
649 | REPORT z17_19 | sapjoy | 2012.08.02 | 2451 |
» | REPORT z17_18 . | sapjoy | 2012.08.02 | 2353 |
647 | REPORT z17_17 . | sapjoy | 2012.08.02 | 2212 |
646 | REPORT z17_16 . | sapjoy | 2012.08.02 | 2196 |
645 | REPORT z17_15 . | sapjoy | 2012.08.02 | 2485 |
644 | REPORT z17_14 . | sapjoy | 2012.08.02 | 1717 |
643 | REPORT z17_13 . | sapjoy | 2012.08.02 | 1436 |
642 | REPORT z17_12 . | sapjoy | 2012.08.02 | 969 |
641 | REPORT z17_11 . | sapjoy | 2012.08.02 | 940 |
640 | REPORT z17_10 . | sapjoy | 2012.08.02 | 990 |
639 | REPORT z17_09 . | sapjoy | 2012.08.02 | 964 |
638 | REPORT z17_08 . | sapjoy | 2012.08.02 | 1000 |
637 | REPORT z17_07 . | sapjoy | 2012.08.02 | 1092 |
636 | REPORT z17_06 . | sapjoy | 2012.08.02 | 869 |
635 | REPORT z17_05 . | sapjoy | 2012.08.02 | 1089 |
634 | REPORT z17_04 . | sapjoy | 2012.08.02 | 1030 |
633 | REPORT z17_03. | sapjoy | 2012.08.02 | 917 |
632 | REPORT z17_02 . | sapjoy | 2012.08.02 | 909 |