메뉴 건너뛰기

SAP 한국 커뮤니티

REPORT z17_20

sapjoy 2012.08.01 20:46 조회 수 : 2879

REPORT  z17_20                                 .

 

*----------------------------------------------------------------------*
*       CLASS lcl_handle_events DEFINITION
*----------------------------------------------------------------------*
class lcl_handle_events definition.
  public section.
    methods:
      on_user_command for event added_function of cl_salv_events
        importing e_salv_function.
endclass.                    "lcl_handle_events DEFINITION
*----------------------------------------------------------------------*
*       CLASS lcl_handle_events IMPLEMENTATION
*----------------------------------------------------------------------*
class lcl_handle_events implementation.
  method on_user_command.
    perform handle_user_command using e_salv_function.
  endmethod.                    "on_user_command
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_container  type ref to cl_gui_custom_container.
data ok_code type syucomm.


start-of-selection.

  select * from sflight into table gt_itab
  up to 25 rows.

  call screen 100.
*&---------------------------------------------------------------------*
*&      Module  0100_PBO  OUTPUT
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module 0100_pbo output.

  set pf-status '0100'.
  if gr_container is not bound.
*1. 컨테이너 생성
    create object gr_container
      exporting
        container_name = 'CONTAINER'.

*2. ALV 테이블 및 데이터 전달
    cl_salv_table=>factory(
      exporting
        r_container    = gr_container
        container_name = 'CONTAINER'
      importing
        r_salv_table   = gr_table
      changing
        t_table        = gt_itab ).


*3. ALV 기본 기능 버튼 설정
    gr_functions = gr_table->get_functions( ).
*    gr_functions->set_default( ).
    gr_functions->set_all( abap_true ).


    include <icon>.
    data : l_icon type string.

    l_icon = icon_refresh.

    gr_functions->add_function(
        name     = 'REFRESH'
        icon     = l_icon
        text     = 'REFRESH'
        tooltip  = 'REFRESH'
        position = if_salv_c_function_position=>right_of_salv_functions
        ).

*4. 이벤트 등록
    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_user_command for lr_event.



*5. ALV 호출
    gr_table->display( ).
  endif.

endmodule.                 " 0100_PBO  OUTPUT
*&---------------------------------------------------------------------*
*&      Module  0100_PAI  INPUT
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module 0100_pai input.

  case ok_code.
    when 'BACK' or 'EXIT' or 'CANC'.
      set screen 0.
      leave screen.
  endcase.

endmodule.                 " 0100_PAI  INPUT
*&---------------------------------------------------------------------*
*&      Form  HANDLE_USER_COMMAND
*&---------------------------------------------------------------------*
form handle_user_command using p_function type salv_de_function.

  case p_function.
    when 'REFRESH'.
      perform refresh.
    when others.
  endcase.

endform.                    "handle_user_command
*&---------------------------------------------------------------------*
*&      Form  REFRESH
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  -->  p1        text
*  <--  p2        text
*----------------------------------------------------------------------*
form refresh .

  select * from sflight
  into corresponding fields of table gt_itab
        up to 10 rows.

  gr_table->refresh( ).


endform.                    " REFRESH

번호 제목 글쓴이 날짜 조회 수
609 report zsapdoi_004. sapjoy 2008.12.26 2923
608 FUNCTION Z_BAPI_ASSETNAME_SEARCH sapjoy 2009.01.30 2898
607 INCLUDE Z16_001I01 sapjoy 2007.04.26 2887
606 REPORT Z05_001 [3] sapjoy 2007.05.21 2880
» REPORT z17_20 sapjoy 2012.08.01 2879
604 REPORT Z03_003 [7] sapjoy 2007.05.11 2875
603 FORM set_field_catalogs_grid USING lt_fieldcat TYPE lvc_t_fcat. sapjoy 2007.01.03 2875
602 REPORT z19_010 [2] sapjoy 2007.04.06 2843
601 REPORT z18_014 sapjoy 2007.03.09 2843
600 Sub DOI_MACRO() sapjoy 2008.12.26 2842
599 DBZF1SSEL sapjoy 2006.12.19 2842
598 REPORT Z09_006 [1] sapjoy 2006.12.18 2839
597 REPORT Z03_006 [5] sapjoy 2006.12.02 2812
596 report zunicode_017. sapjoy 2008.11.21 2810
595 REPORT Z07_016 sapjoy 2008.04.14 2804
594 Report Z15_047 [3] sapjoy 2007.12.05 2798
593 FIELD_EXIT_STCD2_0 sapjoy 2008.12.16 2792
592 report zunicode_026. sapjoy 2008.11.21 2782
591 REPORT Z18_001 sapjoy 2007.03.02 2774
590 Z01_021 [1] sapjoy 2006.12.02 2771