*&---------------------------------------------------------------------*
*& Report ZDEMO_EXCEL2
*& Test Styles for ABAP2XLSX
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*
REPORT zdemo_excel34.
DATA: lo_excel TYPE REF TO zcl_excel,
lo_excel_writer TYPE REF TO zif_excel_writer,
lo_worksheet TYPE REF TO zcl_excel_worksheet.
DATA: lv_file TYPE xstring,
lv_bytecount TYPE i,
lt_file_tab TYPE solix_tab.
DATA: lv_full_path TYPE string,
lv_workdir TYPE string,
lv_file_separator TYPE c.
CONSTANTS: lv_default_file_name TYPE string VALUE '34_Static_Styles.xlsx'.
PARAMETERS: p_path TYPE zexcel_export_dir.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_path.
lv_workdir = p_path.
cl_gui_frontend_services=>directory_browse( EXPORTING initial_folder = lv_workdir
CHANGING selected_folder = lv_workdir ).
p_path = lv_workdir.
INITIALIZATION.
cl_gui_frontend_services=>get_desktop_directory( CHANGING desktop_directory = lv_workdir ).
cl_gui_cfw=>flush( ).
p_path = lv_workdir.
sy-title = 'ZDEMO_EXCEL2;Issue 139: Static styles instead of dynamic styles'.
START-OF-SELECTION.
IF p_path IS INITIAL.
p_path = lv_workdir.
ENDIF.
cl_gui_frontend_services=>get_file_separator( CHANGING file_separator = lv_file_separator ).
CONCATENATE p_path lv_file_separator lv_default_file_name INTO lv_full_path.
" Creates active sheet
CREATE OBJECT lo_excel.
" Get active sheet
lo_worksheet = lo_excel->get_active_worksheet( ).
lo_worksheet->set_title( ip_title = 'Styles' ).
lo_worksheet->set_cell( ip_column = 'B' ip_row = 2 ip_value = 'Hello world' ).
lo_worksheet->set_cell( ip_column = 'C' ip_row = 3 ip_value = 'Bold text' ).
lo_worksheet->change_cell_style( ip_column = 'C'
ip_row = 3
ip_font_bold = abap_true
ip_font_italic = abap_true
ip_font_name = zcl_excel_style_font=>c_name_arial
ip_font_scheme = zcl_excel_style_font=>c_scheme_none
ip_font_color_rgb = zcl_excel_style_color=>c_red
).
lo_worksheet->set_cell( ip_column = 'D' ip_row = 4 ip_value = 'Underlined text' ).
lo_worksheet->change_cell_style( ip_column = 'D'
ip_row = 4
ip_font_underline = abap_true
ip_font_underline_mode = zcl_excel_style_font=>c_underline_double
ip_font_name = zcl_excel_style_font=>c_name_roman
ip_font_scheme = zcl_excel_style_font=>c_scheme_none
ip_font_family = zcl_excel_style_font=>c_family_roman
).
lo_worksheet->set_cell( ip_column = 'B' ip_row = 5 ip_value = 'Filled text' ).
lo_worksheet->change_cell_style( ip_column = 'B'
ip_row = 5
ip_fill_filltype = zcl_excel_style_fill=>c_fill_solid
ip_fill_fgcolor_theme = zcl_excel_style_color=>c_theme_accent6
).
lo_worksheet->set_cell( ip_column = 'C' ip_row = 6 ip_value = 'Borders' ).
lo_worksheet->change_cell_style( ip_column = 'C'
ip_row = 6
ip_borders_allbo_color_rgb = zcl_excel_style_color=>c_black
ip_borders_allborders_style = zcl_excel_style_border=>c_border_thin
ip_borders_diagonal_color_rgb = zcl_excel_style_color=>c_black
ip_borders_diagonal_style = zcl_excel_style_border=>c_border_thin
ip_borders_diagonal_mode = zcl_excel_style_borders=>c_diagonal_both
).
lo_worksheet->set_cell( ip_column = 'D' ip_row = 7 ip_value = 'I''m not a button :)' ).
lo_worksheet->change_cell_style( ip_column = 'D'
ip_row = 7
ip_borders_down_color_rgb = zcl_excel_style_color=>c_black
ip_borders_down_style = zcl_excel_style_border=>c_border_thin
ip_borders_right_color_rgb = zcl_excel_style_color=>c_black
ip_borders_right_style = zcl_excel_style_border=>c_border_thin
ip_borders_top_color_rgb = zcl_excel_style_color=>c_gray
ip_borders_top_style = zcl_excel_style_border=>c_border_thin
ip_borders_left_color_rgb = zcl_excel_style_color=>c_gray
ip_borders_left_style = zcl_excel_style_border=>c_border_thin
).
lo_worksheet->set_cell( ip_column = 'B' ip_row = 9 ip_value = 'Modified color for Excel 2003' ).
lo_excel->legacy_palette->set_color( "replace built-in color from palette with out custom RGB turquoise
ip_index = 16
ip_color = '0040E0D0' ).
lo_worksheet->change_cell_style( ip_column = 'B'
ip_row = 9
ip_fill_filltype = zcl_excel_style_fill=>c_fill_solid
ip_fill_fgcolor_indexed = 16
).
" Fill the cell and apply one style
lo_worksheet->set_cell( ip_column = 'B' ip_row = 6 ip_value = 'Filled text' ).
lo_worksheet->change_cell_style( ip_column = 'B'
ip_row = 6
ip_fill_filltype = zcl_excel_style_fill=>c_fill_solid
ip_fill_fgcolor_rgb = zcl_excel_style_color=>c_green
ip_font_name = zcl_excel_style_font=>c_name_cambria
ip_font_scheme = zcl_excel_style_font=>c_scheme_major
).
" Change the style
* lo_worksheet->set_cell_style( ip_column = 'B' ip_row = 6 ).
" Add Style to an empty cell to test Fix for Issue
"#44 Exception ZCX_EXCEL thrown when style is set for an empty cell
" https://code.sdn.sap.com/spaces/abap2xlsx/tickets/44-exception-zcx_excel-thrown-when-style-is-set-for-an-empty-cell
* lo_worksheet->set_cell_style( ip_column = 'E' ip_row = 6 ).
lo_worksheet->change_cell_style( ip_column = 'E'
ip_row = 6
ip_fill_filltype = zcl_excel_style_fill=>c_fill_solid
ip_fill_fgcolor_rgb = zcl_excel_style_color=>c_green
ip_font_name = zcl_excel_style_font=>c_name_cambria
ip_font_scheme = zcl_excel_style_font=>c_scheme_major
).
CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
lv_file = lo_excel_writer->write_file( lo_excel ).
" Convert to binary
CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
EXPORTING
buffer = lv_file
IMPORTING
output_length = lv_bytecount
TABLES
binary_tab = lt_file_tab.
* " This method is only available on AS ABAP > 6.40
* lt_file_tab = cl_bcs_convert=>xstring_to_solix( iv_xstring = lv_file ).
* lv_bytecount = xstrlen( lv_file ).
" Save the file
cl_gui_frontend_services=>gui_download( EXPORTING bin_filesize = lv_bytecount
filename = lv_full_path
filetype = 'BIN'
CHANGING data_tab = lt_file_tab ).