메뉴 건너뛰기

SAP 한국 커뮤니티

REPORT z17_23

sapjoy 2012.08.01 20:49 조회 수 : 2512

REPORT  z17_23                                 .

 

include <color>.

typesbegin of g_type_itab.
include type sflight.
types : t_color     type lvc_t_scol,
end of g_type_itab.

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

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


field-symbols: <ls_outtab> type g_type_itab.

data :  lt_color     type lvc_t_scol,
        ls_color     type lvc_s_scol.

clear lt_color.
clear ls_color.


loop at gt_itab assigning <ls_outtab>.
  clear : ls_color, lt_color.
  if <ls_outtab>-seatsocc >= 90.
    ls_color-fname     = 'SEATSOCC'.
    ls_color-color-col = col_negative.
    ls_color-color-int = 0.
    ls_color-color-inv = 0.
    append ls_color to lt_color.      
  elseif <ls_outtab>-seatsocc >= 50.
    ls_color-fname     = 'SEATSOCC'.
    ls_color-color-col = col_normal.
    ls_color-color-int = 0.
    ls_color-color-inv = 0.
    append ls_color to lt_color.       
  else.
    ls_color-fname     = 'SEATSOCC'.
    ls_color-color-col = col_positive.
    ls_color-color-int = 0.
    ls_color-color-inv = 0.
    append ls_color to lt_color.         
  endif.

    <ls_outtab>-t_color = lt_color.
  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_columns->set_color_column( 'T_COLOR' ).


  gr_table->display( ).

번호 제목 글쓴이 날짜 조회 수
670 REPORT Z99_24. sapjoy 2024.05.21 11
669 REPORT Z06_01. sapjoy 2024.04.20 21
668 REPORT  z05_36 sapjoy 2023.02.07 246
667  z15_21_drag sapjoy 2022.02.24 271
666 Z18_06_DRAGCLASS sapjoy 2022.02.22 298
665 API sapjoy 2022.11.02 318
664 REPORT z10_02. sapjoy 2012.07.30 779
663 REPORT Z11_09. sapjoy 2012.07.30 780
662 REPORT Z11_04 . sapjoy 2012.07.30 786
661 REPORT Z11_03. sapjoy 2012.07.30 795
660 REPORT z11_05. sapjoy 2012.07.30 797
659 REPORT z14_13. sapjoy 2012.08.01 798
658 REPORT z14_09. sapjoy 2012.08.01 800
657 REPORT Z11_08. sapjoy 2012.07.30 805
656 REPORT z08_05. sapjoy 2012.07.30 810
655 REPORT z10_06. sapjoy 2012.07.30 813
654 REPORT z05_14. sapjoy 2012.07.30 814
653 REPORT Z05_32. sapjoy 2012.07.30 816
652 REPORT z08_03. sapjoy 2012.07.30 817
651 REPORT z10_11. sapjoy 2012.07.30 817