report zsalv_032 .
*----------------------------------------------------------------------*
* CLASS lcl_handle_events DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
class lcl_handle_events definition.
public section.
methods:
on_double_click for event double_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_double_click.
perform show_cell_info using row column '더블 클릭하였습니다.'.
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_functions type ref to cl_salv_functions_list.
data gr_function type ref to cl_salv_functions.
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 ).
data : l_name type salv_de_function,
l_icon type string,
l_text type string,
l_tooltip type string,
l_pos type salv_de_function_pos.
l_name = 'REF'.
l_icon = 'ICON_REFRESH'.
l_text = 'REF'.
l_tooltip = '1'.
l_pos = if_salv_c_function_position=>right_of_salv_functions .
gr_functions = gr_table->get_functions( ).
gr_functions->set_default( ).
*gr_function ?= gr_functions->GET_FUNCTIONS( ).
call method gr_functions->add_function
exporting
name = l_name
icon = l_icon
text = l_text
tooltip = l_tooltip
position = l_pos .
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_double_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
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
391 | report zsaptip_009 [1] | sapjoy | 2010.12.10 | 3852 |
390 | REPORT Z_3DGRAPH. [1] | sapjoy | 2010.10.18 | 3666 |
389 | REPORT zsmw0010 | sapjoy | 2010.10.12 | 4315 |
388 | z_exception_test | sapjoy | 2010.10.11 | 3521 |
387 | REPORT zmacro_01. | sapjoy | 2010.10.10 | 2582 |
386 | REPORT ZTEST_ABAPTPDF | sapjoy | 2010.10.10 | 3693 |
385 | REPORT ZALVCOLOR | sapjoy | 2010.10.10 | 3212 |
384 | REPORT ZTABLE_UTIL | sapjoy | 2010.10.10 | 4012 |
383 | REPORT Z_DYNAMIC_SCREEN [1] | sapjoy | 2010.10.08 | 3035 |
382 | report zsalv_045 . | sapjoy | 2010.08.20 | 4264 |
381 | report zsalv_043 . | sapjoy | 2010.08.20 | 2978 |
380 | report zsalv_042 . | sapjoy | 2010.08.20 | 3135 |
379 | report zsalv_041 . | sapjoy | 2010.08.20 | 2998 |
378 | report zsalv_040 . | sapjoy | 2010.08.20 | 2608 |
377 | report zsalv_036 . | sapjoy | 2010.08.20 | 3473 |
376 | report zsalv_035 . | sapjoy | 2010.08.20 | 2505 |
» | report zsalv_032 . | sapjoy | 2010.08.20 | 2976 |
374 | report zsalv_031 . | sapjoy | 2010.08.20 | 2427 |
373 | report zsalv_030 . | sapjoy | 2010.08.20 | 2331 |
372 | report zsalv_023 . | sapjoy | 2010.08.20 | 2347 |