메뉴 건너뛰기

SAP 한국 커뮤니티

report zsalv_031 .

sapjoy 2010.08.20 11:00 조회 수 : 2427

 

report  zsalv_031                                 .

*----------------------------------------------------------------------*
*       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
번호 제목 글쓴이 날짜 조회 수
390 REPORT Z_3DGRAPH. [1] sapjoy 2010.10.17 3659
389 REPORT zsmw0010 sapjoy 2010.10.11 4313
388 z_exception_test sapjoy 2010.10.10 3520
387 REPORT zmacro_01. sapjoy 2010.10.09 2582
386 REPORT ZTEST_ABAPTPDF sapjoy 2010.10.09 3691
385 REPORT ZALVCOLOR sapjoy 2010.10.09 3212
384 REPORT ZTABLE_UTIL sapjoy 2010.10.09 4010
383 REPORT Z_DYNAMIC_SCREEN [1] sapjoy 2010.10.07 3034
382 report zsalv_045 . sapjoy 2010.08.20 4262
381 report zsalv_043 . sapjoy 2010.08.20 2978
380 report zsalv_042 . sapjoy 2010.08.20 3132
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 3472
376 report zsalv_035 . sapjoy 2010.08.20 2505
375 report zsalv_032 . sapjoy 2010.08.20 2976
» report zsalv_031 . sapjoy 2010.08.20 2427
373 report zsalv_030 . sapjoy 2010.08.20 2330
372 report zsalv_023 . sapjoy 2010.08.20 2347
371 report zsalv_021 . sapjoy 2010.08.20 2293