메뉴 건너뛰기

SAP 한국 커뮤니티

report zsalv_041 .

sapjoy 2010.08.20 11:01 조회 수 : 2998

 

report  zsalv_041                                 .

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( ).
번호 제목 글쓴이 날짜 조회 수
630 REPORT Z09_005 sapjoy 2006.12.18 2514
629 REPORT Z09_006 [1] sapjoy 2006.12.18 2839
628 DBZF1SSEL sapjoy 2006.12.19 2842
627 REPORT Z09_010 sapjoy 2006.12.19 2523
626 PUT_SPFLI PUT_SFLIGHT PUT_SBOOK sapjoy 2006.12.19 2614
625 REPORT Z11_001 sapjoy 2006.12.20 2977
624 REPORT z11_004 . sapjoy 2006.12.22 2465
623 REPORT Z11_005 sapjoy 2006.12.22 2273
622 REPORT Z11_008 sapjoy 2006.12.22 2496
621 REPORT Z11_010 sapjoy 2006.12.22 2358
620 module f4_drum_S101 input. sapjoy 2006.12.26 2541
619 MODULE f4_drum_s101 INPUT. 2 sapjoy 2006.12.26 2375
618 REPORT z12_002 sapjoy 2006.12.28 2629
617 REPORT Z13_002 sapjoy 2007.01.03 2309
616 REPORT Z12_004 sapjoy 2007.01.03 2256
615 FORM set_field_catalogs_grid USING lt_fieldcat TYPE lvc_t_fcat. sapjoy 2007.01.03 2875
614 REPORT Z13_003 sapjoy 2007.01.05 2437
613 REPORT Z13_001 sapjoy 2007.01.08 2362
612 REPORT Z13_012 sapjoy 2007.01.08 2282
611 REPORT Z13_013 sapjoy 2007.01.08 2634