report zsalv_043 .
include <color>.
types: begin 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( ).
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
631 | REPORT z17_06 . | sapjoy | 2012.08.02 | 881 |
630 | REPORT z05_21. | sapjoy | 2012.07.31 | 882 |
629 | REPORT z14_05. | sapjoy | 2012.08.02 | 882 |
628 | REPORT z08_04. | sapjoy | 2012.07.31 | 885 |
627 | REPORT Z12_26. | sapjoy | 2012.07.31 | 886 |
626 | REPORT z04_18. | sapjoy | 2012.07.31 | 887 |
625 | REPORT z05_22. | sapjoy | 2012.07.31 | 887 |
624 | REPORT z10_13. | sapjoy | 2012.07.31 | 891 |
623 | REPORT Z11_01. | sapjoy | 2012.07.31 | 895 |
622 | REPORT z05_25. [1] | sapjoy | 2012.07.31 | 896 |
621 | REPORT z14_03. | sapjoy | 2012.08.02 | 898 |
620 | REPORT z05_31. | sapjoy | 2012.07.31 | 900 |
619 | REPORT z10_10. [1] | sapjoy | 2012.07.31 | 902 |
618 | REPORT z10_12. | sapjoy | 2012.07.31 | 905 |
617 | REPORT z05_24. | sapjoy | 2012.07.31 | 906 |
616 | REPORT z11_02. | sapjoy | 2012.07.31 | 906 |
615 | REPORT z11_06. | sapjoy | 2012.07.31 | 908 |
614 | REPORT z05_23. | sapjoy | 2012.07.31 | 909 |
613 | REPORT z10_04. | sapjoy | 2012.07.31 | 910 |
612 | REPORT z05_35. [1] | sapjoy | 2012.07.31 | 912 |