메뉴 건너뛰기

SAP 한국 커뮤니티

REPORT z17_22

sapjoy 2012.08.02 05:48 조회 수 : 2347

REPORT  z17_22                                 .

 

include <icon>.

typesbegin of g_type_itab.
        include type sflight.
        types:   icon  type icon_d,
      end of g_type_itab.

data gt_itab    type table of g_type_itab.
data gs_itab    type g_type_itab.
data gr_table   type ref to cl_salv_table.

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

loop at gt_itab into gs_itab.
    if gs_itab-seatsocc >= 90.
      gs_itab-icon = icon_locked.
    elseif gs_itab-seatsocc >= 50.
      gs_itab-icon = icon_message_warning.
else.
      gs_itab-icon = icon_unlocked.
    endif.

    modify gt_itab from gs_itab.
endloop.

cl_salv_table=>factory(
  importing
    r_salv_table = gr_table
  changing
    t_table      = gt_itab ).

data: lr_columns type ref to cl_salv_columns_table,
      lr_column  type ref to cl_salv_column_table.

lr_columns = gr_table->get_columns( ).
lr_column ?= lr_columns->get_column( 'ICON' ).
lr_column->set_icon( if_salv_c_bool_sap=>true ).
lr_column->set_long_text( 'ICON' ).

gr_table->display( ).

번호 제목 글쓴이 날짜 조회 수
671 REPORT Z06_01. sapjoy 2024.04.21 95
670 REPORT Z99_24. sapjoy 2024.05.21 158
669 REPORT  z05_36 sapjoy 2023.02.08 315
668  z15_21_drag sapjoy 2022.02.24 344
667 직원 데이터 [1] file sapjoy 2024.07.02 348
666 API sapjoy 2022.11.03 399
665 Z18_06_DRAGCLASS sapjoy 2022.02.23 491
664 REPORT z10_02. sapjoy 2012.07.31 795
663 REPORT Z11_09. sapjoy 2012.07.31 799
662 REPORT Z11_04 . sapjoy 2012.07.31 804
661 REPORT Z11_03. sapjoy 2012.07.31 814
660 REPORT z14_13. sapjoy 2012.08.02 818
659 REPORT z11_05. sapjoy 2012.07.31 820
658 REPORT z14_09. sapjoy 2012.08.02 824
657 REPORT z05_14. sapjoy 2012.07.31 826
656 REPORT Z11_08. sapjoy 2012.07.31 826
655 REPORT z08_05. sapjoy 2012.07.31 829
654 REPORT z08_03. sapjoy 2012.07.31 830
653 REPORT Z08_01. sapjoy 2012.07.31 833
652 REPORT z14_07. sapjoy 2012.08.02 833