메뉴 건너뛰기

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

번호 제목 글쓴이 날짜 조회 수
» REPORT z17_23 sapjoy 2012.08.01 2512
509 REPORT Z15_028 sapjoy 2007.02.01 2509
508 REPORT Z17_004. sapjoy 2007.02.11 2508
507 report zsalv_035 . sapjoy 2010.08.20 2505
506 REPORT Z17_014. [1] sapjoy 2007.02.13 2503
505 REPORT Z15_005 sapjoy 2007.01.31 2503
504 REPORT ZDYNAMIC_ITAB_03 sapjoy 2009.02.16 2501
503 REPORT z20_001 sapjoy 2007.04.12 2499
502 REPORT Z11_008 sapjoy 2006.12.22 2496
501 REPORT Z15_022. sapjoy 2007.01.30 2494
500 report zunicode_025. sapjoy 2008.11.21 2489
499 INCLUDE Z17_011_CLASS sapjoy 2007.02.12 2489
498 REPORT Z04_004 [7] sapjoy 2008.04.14 2487
497 REPORT z15_023 sapjoy 2007.01.30 2484
496 REPORT Z13_020 [2] sapjoy 2007.11.29 2482
495 report zunicode_007 sapjoy 2008.11.21 2481
494 REPORT ZSAPGOS_001. sapjoy 2009.02.11 2477
493 report zsalv_002 [1] sapjoy 2010.08.20 2476
492 REPORT Z04_019 [2] sapjoy 2007.05.21 2476
491 REPORT Z15_044 [1] sapjoy 2008.04.15 2474