메뉴 건너뛰기

SAP 한국 커뮤니티

REPORT z17_19

sapjoy 2012.08.01 20:31 조회 수 : 2438

REPORT  z17_19.

 

data gt_itab       type table of sflight.
data gr_table      type ref to cl_salv_table.
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.

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. 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

번호 제목 글쓴이 날짜 조회 수
470 REPORT Z04_002 sapjoy 2008.04.14 2447
469 report zsalv_001 sapjoy 2010.08.20 2442
» REPORT z17_19 sapjoy 2012.08.01 2438
467 REPORT Z07_030 [4] sapjoy 2006.12.08 2438
466 REPORT z15_031 sapjoy 2007.02.05 2437
465 REPORT Z13_003 sapjoy 2007.01.05 2437
464 REPORT Z03_004 sapjoy 2007.05.11 2433
463 REPORT Z05_026 [2] sapjoy 2007.05.28 2428
462 report zsalv_031 . sapjoy 2010.08.20 2427
461 REPORT Z07_015 sapjoy 2006.12.08 2426
460 REPORT Z03_007 [6] sapjoy 2007.05.13 2425
459 REPORT z18_006 sapjoy 2007.03.06 2423
458 FUNCTION Z_BAPI_REQ_FUNCLOC. sapjoy 2009.02.05 2421
457 FUNCTION Z_BAPIALE_SEND. sapjoy 2009.02.10 2420
456 REPORT Z17_000. sapjoy 2007.02.22 2419
455 REPORT Z03_009 [1] sapjoy 2008.04.14 2418
454 report zunicode_030. sapjoy 2008.11.21 2416
453 Z17_ZSFLIGHT sapjoy 2007.02.26 2413
452 MODULE creat_listbox [4] sapjoy 2007.12.12 2411
451 report zunicode_004. sapjoy 2008.11.21 2410