diff --git a/ZA2X/PROG/ZDEMO_TECHED1.slnk b/ZA2X/PROG/ZDEMO_TECHED1.slnk
new file mode 100644
index 0000000..c93eda4
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED1.slnk
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED1
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched1.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+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 'TechEd01.xlsx'.
+
+*******************************
+* Selection screen management *
+*******************************
+
+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_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
+ cl_gui_cfw=>flush( ).
+ p_path = lv_workdir.
+
+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.
+
+
+*******************************
+* abap2xlsx create XLSX *
+*******************************
+
+ " Create excel instance
+ CREATE OBJECT lo_excel.
+
+ " Get active sheet
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Demo01' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 2 ip_value = 'Hello world' ).
+
+ " Create xlsx stream
+ CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
+ lv_file = lo_excel_writer->write_file( lo_excel ).
+
+*******************************
+* Output *
+*******************************
+
+ " Convert to binary
+ 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 ).
+
diff --git a/ZA2X/PROG/ZDEMO_TECHED10.slnk b/ZA2X/PROG/ZDEMO_TECHED10.slnk
new file mode 100644
index 0000000..a982638
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED10.slnk
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED3
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched3.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+DATA: lo_excel TYPE REF TO zcl_excel,
+ lo_excel_reader TYPE REF TO zif_excel_reader,
+ lo_worksheet TYPE REF TO zcl_excel_worksheet.
+
+DATA: lv_full_path TYPE string,
+ lv_workdir TYPE string,
+ lv_file_separator TYPE c.
+
+DATA: lt_files TYPE filetable,
+ ls_file TYPE file_table,
+ lv_rc TYPE i,
+ lv_value TYPE zexcel_cell_value.
+
+CONSTANTS: lc_default_file_name TYPE string VALUE 'TechEd01.xlsx'.
+
+*******************************
+* Selection screen management *
+*******************************
+
+PARAMETERS: p_path TYPE zexcel_export_dir.
+
+AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_path.
+ lv_workdir = p_path.
+ cl_gui_frontend_services=>file_open_dialog( EXPORTING initial_directory = lv_workdir
+ default_filename = lc_default_file_name
+ file_filter = 'abap2xlsx|*.xlsx'
+ CHANGING file_table = lt_files
+ rc = lv_rc ).
+ IF lv_rc EQ 1.
+ READ TABLE lt_files INTO ls_file INDEX 1.
+ lv_full_path = ls_file-filename.
+ p_path = ls_file-filename.
+ ENDIF.
+
+INITIALIZATION.
+ cl_gui_frontend_services=>get_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
+ cl_gui_cfw=>flush( ).
+ cl_gui_frontend_services=>get_file_separator( CHANGING file_separator = lv_file_separator ).
+ CONCATENATE lv_workdir lv_file_separator lc_default_file_name INTO lv_full_path.
+ p_path = lv_full_path.
+
+START-OF-SELECTION.
+
+ IF lv_full_path IS INITIAL.
+ cl_gui_frontend_services=>get_file_separator( CHANGING file_separator = lv_file_separator ).
+ CONCATENATE lv_workdir lv_file_separator lc_default_file_name INTO lv_full_path.
+ ENDIF.
+
+*******************************
+* abap2xlsx read XLSX *
+*******************************
+ CREATE OBJECT lo_excel_reader TYPE zcl_excel_reader_2007.
+ lo_excel = lo_excel_reader->load_file( lv_full_path ).
+
+ lo_excel->set_active_sheet_index( 1 ).
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+
+ lo_worksheet->get_cell( EXPORTING ip_column = 'C'
+ ip_row = 10
+ IMPORTING ep_value = lv_value ).
+
+ WRITE: 'abap2xlsx total score is ', lv_value.
+
diff --git a/ZA2X/PROG/ZDEMO_TECHED2.slnk b/ZA2X/PROG/ZDEMO_TECHED2.slnk
new file mode 100644
index 0000000..e72153d
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED2.slnk
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED2
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched2.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+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: lo_style_title TYPE REF TO zcl_excel_style,
+ lv_style_title_guid TYPE zexcel_cell_style.
+
+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 'TechEd01.xlsx'.
+
+*******************************
+* Selection screen management *
+*******************************
+
+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_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
+ cl_gui_cfw=>flush( ).
+ p_path = lv_workdir.
+
+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.
+
+*******************************
+* abap2xlsx create XLSX *
+*******************************
+
+ " Create excel instance
+ CREATE OBJECT lo_excel.
+
+ " Styles
+ lo_style_title = lo_excel->add_new_style( ).
+ lo_style_title->font->bold = abap_true.
+ lo_style_title->font->color-rgb = zcl_excel_style_color=>c_blue.
+ lv_style_title_guid = lo_style_title->get_guid( ).
+
+ " Get active sheet
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Demo TechEd' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 5 ip_value = 'TechEd demo' ip_style = lv_style_title_guid ).
+
+ " Create xlsx stream
+ CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
+ lv_file = lo_excel_writer->write_file( lo_excel ).
+
+*******************************
+* Output *
+*******************************
+
+ " Convert to binary
+ 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 ).
+
diff --git a/ZA2X/PROG/ZDEMO_TECHED3.slnk b/ZA2X/PROG/ZDEMO_TECHED3.slnk
new file mode 100644
index 0000000..6ccde65
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED3.slnk
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED3
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched3.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+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: lo_style_title TYPE REF TO zcl_excel_style,
+ lo_drawing TYPE REF TO zcl_excel_drawing,
+ lv_style_title_guid TYPE zexcel_cell_style,
+ ls_key TYPE wwwdatatab.
+
+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 'TechEd01.xlsx'.
+
+*******************************
+* Selection screen management *
+*******************************
+
+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_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
+ cl_gui_cfw=>flush( ).
+ p_path = lv_workdir.
+
+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.
+
+*******************************
+* abap2xlsx create XLSX *
+*******************************
+
+ " Create excel instance
+ CREATE OBJECT lo_excel.
+
+ " Styles
+ lo_style_title = lo_excel->add_new_style( ).
+ lo_style_title->font->bold = abap_true.
+ lo_style_title->font->color-rgb = zcl_excel_style_color=>c_blue.
+ lv_style_title_guid = lo_style_title->get_guid( ).
+
+ " Get active sheet
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Demo TechEd' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 5 ip_value = 'TechEd demo' ip_style = lv_style_title_guid ).
+
+ " add logo from SMWO
+ lo_drawing = lo_excel->add_new_drawing( ).
+ lo_drawing->set_position( ip_from_row = 2
+ ip_from_col = 'B' ).
+
+ ls_key-relid = 'MI'.
+ ls_key-objid = 'ZTECHED'.
+ lo_drawing->set_media_www( ip_key = ls_key
+ ip_width = 140
+ ip_height = 64 ).
+
+ " assign drawing to the worksheet
+ lo_worksheet->add_drawing( lo_drawing ).
+
+ " Create xlsx stream
+ CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
+ lv_file = lo_excel_writer->write_file( lo_excel ).
+
+*******************************
+* Output *
+*******************************
+
+ " Convert to binary
+ 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 ).
+
diff --git a/ZA2X/PROG/ZDEMO_TECHED4.slnk b/ZA2X/PROG/ZDEMO_TECHED4.slnk
new file mode 100644
index 0000000..985a2cc
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED4.slnk
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED3
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched3.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+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: lo_style_title TYPE REF TO zcl_excel_style,
+ lo_drawing TYPE REF TO zcl_excel_drawing,
+ lo_range TYPE REF TO zcl_excel_range,
+ lv_style_title_guid TYPE zexcel_cell_style,
+ ls_key TYPE wwwdatatab.
+
+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 'TechEd01.xlsx'.
+
+*******************************
+* Selection screen management *
+*******************************
+
+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_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
+ cl_gui_cfw=>flush( ).
+ p_path = lv_workdir.
+
+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.
+
+*******************************
+* abap2xlsx create XLSX *
+*******************************
+
+ " Create excel instance
+ CREATE OBJECT lo_excel.
+
+ " Styles
+ lo_style_title = lo_excel->add_new_style( ).
+ lo_style_title->font->bold = abap_true.
+ lo_style_title->font->color-rgb = zcl_excel_style_color=>c_blue.
+ lv_style_title_guid = lo_style_title->get_guid( ).
+
+ " Get active sheet
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Demo TechEd' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 5 ip_value = 'TechEd demo' ip_style = lv_style_title_guid ).
+
+ " add logo from SMWO
+ lo_drawing = lo_excel->add_new_drawing( ).
+ lo_drawing->set_position( ip_from_row = 2
+ ip_from_col = 'B' ).
+
+ ls_key-relid = 'MI'.
+ ls_key-objid = 'ZTECHED'.
+ lo_drawing->set_media_www( ip_key = ls_key
+ ip_width = 140
+ ip_height = 64 ).
+
+ " assign drawing to the worksheet
+ lo_worksheet->add_drawing( lo_drawing ).
+
+ " Add new sheet
+ lo_worksheet = lo_excel->add_new_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Values' ).
+
+ " Set values for range
+ lo_worksheet->set_cell( ip_row = 4 ip_column = 'A' ip_value = 1 ).
+ lo_worksheet->set_cell( ip_row = 5 ip_column = 'A' ip_value = 2 ).
+ lo_worksheet->set_cell( ip_row = 6 ip_column = 'A' ip_value = 3 ).
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'A' ip_value = 4 ).
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'A' ip_value = 5 ).
+
+ lo_range = lo_excel->add_new_range( ).
+ lo_range->name = 'Values'.
+ lo_range->set_value( ip_sheet_name = 'Values'
+ ip_start_column = 'A'
+ ip_start_row = 4
+ ip_stop_column = 'A'
+ ip_stop_row = 8 ).
+
+ lo_excel->set_active_sheet_index( 1 ).
+
+ " Create xlsx stream
+ CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
+ lv_file = lo_excel_writer->write_file( lo_excel ).
+
+*******************************
+* Output *
+*******************************
+
+ " Convert to binary
+ 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 ).
+
diff --git a/ZA2X/PROG/ZDEMO_TECHED5.slnk b/ZA2X/PROG/ZDEMO_TECHED5.slnk
new file mode 100644
index 0000000..8774286
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED5.slnk
@@ -0,0 +1,159 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED3
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched3.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+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: lo_style_title TYPE REF TO zcl_excel_style,
+ lo_drawing TYPE REF TO zcl_excel_drawing,
+ lo_range TYPE REF TO zcl_excel_range,
+ lo_data_validation TYPE REF TO zcl_excel_data_validation,
+ lv_style_title_guid TYPE zexcel_cell_style,
+ ls_key TYPE wwwdatatab.
+
+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 'TechEd01.xlsx'.
+
+*******************************
+* Selection screen management *
+*******************************
+
+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_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
+ cl_gui_cfw=>flush( ).
+ p_path = lv_workdir.
+
+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.
+
+*******************************
+* abap2xlsx create XLSX *
+*******************************
+
+ " Create excel instance
+ CREATE OBJECT lo_excel.
+
+ " Styles
+ lo_style_title = lo_excel->add_new_style( ).
+ lo_style_title->font->bold = abap_true.
+ lo_style_title->font->color-rgb = zcl_excel_style_color=>c_blue.
+ lv_style_title_guid = lo_style_title->get_guid( ).
+
+ " Get active sheet
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Demo TechEd' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 5 ip_value = 'TechEd demo' ip_style = lv_style_title_guid ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 7 ip_value = 'Is abap2xlsx simple' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 8 ip_value = 'Is abap2xlsx CooL' ).
+
+ " add logo from SMWO
+ lo_drawing = lo_excel->add_new_drawing( ).
+ lo_drawing->set_position( ip_from_row = 2
+ ip_from_col = 'B' ).
+
+ ls_key-relid = 'MI'.
+ ls_key-objid = 'ZTECHED'.
+ lo_drawing->set_media_www( ip_key = ls_key
+ ip_width = 140
+ ip_height = 64 ).
+
+ " assign drawing to the worksheet
+ lo_worksheet->add_drawing( lo_drawing ).
+
+ " Add new sheet
+ lo_worksheet = lo_excel->add_new_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Values' ).
+
+ " Set values for range
+ lo_worksheet->set_cell( ip_row = 4 ip_column = 'A' ip_value = 1 ).
+ lo_worksheet->set_cell( ip_row = 5 ip_column = 'A' ip_value = 2 ).
+ lo_worksheet->set_cell( ip_row = 6 ip_column = 'A' ip_value = 3 ).
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'A' ip_value = 4 ).
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'A' ip_value = 5 ).
+
+ lo_range = lo_excel->add_new_range( ).
+ lo_range->name = 'Values'.
+ lo_range->set_value( ip_sheet_name = 'Values'
+ ip_start_column = 'A'
+ ip_start_row = 4
+ ip_stop_column = 'A'
+ ip_stop_row = 8 ).
+
+ lo_excel->set_active_sheet_index( 1 ).
+
+ " add data validation
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 7.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'C' ip_value = 'Select a value' ).
+
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 8.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'C' ip_value = 'Select a value' ).
+
+ " Create xlsx stream
+ CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
+ lv_file = lo_excel_writer->write_file( lo_excel ).
+
+*******************************
+* Output *
+*******************************
+
+ " Convert to binary
+ 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 ).
+
diff --git a/ZA2X/PROG/ZDEMO_TECHED6.slnk b/ZA2X/PROG/ZDEMO_TECHED6.slnk
new file mode 100644
index 0000000..88ee460
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED6.slnk
@@ -0,0 +1,166 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED3
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched3.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+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: lo_style_title TYPE REF TO zcl_excel_style,
+ lo_drawing TYPE REF TO zcl_excel_drawing,
+ lo_range TYPE REF TO zcl_excel_range,
+ lo_data_validation TYPE REF TO zcl_excel_data_validation,
+ lo_column_dimension TYPE REF TO zcl_excel_worksheet_columndime,
+ lv_style_title_guid TYPE zexcel_cell_style,
+ ls_key TYPE wwwdatatab.
+
+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 'TechEd01.xlsx'.
+
+*******************************
+* Selection screen management *
+*******************************
+
+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_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
+ cl_gui_cfw=>flush( ).
+ p_path = lv_workdir.
+
+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.
+
+*******************************
+* abap2xlsx create XLSX *
+*******************************
+
+ " Create excel instance
+ CREATE OBJECT lo_excel.
+
+ " Styles
+ lo_style_title = lo_excel->add_new_style( ).
+ lo_style_title->font->bold = abap_true.
+ lo_style_title->font->color-rgb = zcl_excel_style_color=>c_blue.
+ lv_style_title_guid = lo_style_title->get_guid( ).
+
+ " Get active sheet
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Demo TechEd' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 5 ip_value = 'TechEd demo' ip_style = lv_style_title_guid ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 7 ip_value = 'Is abap2xlsx simple' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 8 ip_value = 'Is abap2xlsx CooL' ).
+
+ " add logo from SMWO
+ lo_drawing = lo_excel->add_new_drawing( ).
+ lo_drawing->set_position( ip_from_row = 2
+ ip_from_col = 'B' ).
+
+ ls_key-relid = 'MI'.
+ ls_key-objid = 'ZTECHED'.
+ lo_drawing->set_media_www( ip_key = ls_key
+ ip_width = 140
+ ip_height = 64 ).
+
+ " assign drawing to the worksheet
+ lo_worksheet->add_drawing( lo_drawing ).
+
+ " Add new sheet
+ lo_worksheet = lo_excel->add_new_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Values' ).
+
+ " Set values for range
+ lo_worksheet->set_cell( ip_row = 4 ip_column = 'A' ip_value = 1 ).
+ lo_worksheet->set_cell( ip_row = 5 ip_column = 'A' ip_value = 2 ).
+ lo_worksheet->set_cell( ip_row = 6 ip_column = 'A' ip_value = 3 ).
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'A' ip_value = 4 ).
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'A' ip_value = 5 ).
+
+ lo_range = lo_excel->add_new_range( ).
+ lo_range->name = 'Values'.
+ lo_range->set_value( ip_sheet_name = 'Values'
+ ip_start_column = 'A'
+ ip_start_row = 4
+ ip_stop_column = 'A'
+ ip_stop_row = 8 ).
+
+ lo_excel->set_active_sheet_index( 1 ).
+
+ " add data validation
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 7.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'C' ip_value = 'Select a value' ).
+
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 8.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'C' ip_value = 'Select a value' ).
+
+ " add autosize (column width)
+ lo_column_dimension = lo_worksheet->get_column_dimension( ip_column = 'B' ).
+ lo_column_dimension->set_auto_size( ip_auto_size = abap_true ).
+ lo_column_dimension = lo_worksheet->get_column_dimension( ip_column = 'C' ).
+ lo_column_dimension->set_auto_size( ip_auto_size = abap_true ).
+
+ " Create xlsx stream
+ CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
+ lv_file = lo_excel_writer->write_file( lo_excel ).
+
+*******************************
+* Output *
+*******************************
+
+ " Convert to binary
+ 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 ).
+
diff --git a/ZA2X/PROG/ZDEMO_TECHED7.slnk b/ZA2X/PROG/ZDEMO_TECHED7.slnk
new file mode 100644
index 0000000..62c9359
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED7.slnk
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED3
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched3.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+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: lo_style_title TYPE REF TO zcl_excel_style,
+ lo_drawing TYPE REF TO zcl_excel_drawing,
+ lo_range TYPE REF TO zcl_excel_range,
+ lo_data_validation TYPE REF TO zcl_excel_data_validation,
+ lo_column_dimension TYPE REF TO zcl_excel_worksheet_columndime,
+ lv_style_title_guid TYPE zexcel_cell_style,
+ ls_key TYPE wwwdatatab.
+
+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 'TechEd01.xlsx'.
+
+*******************************
+* Selection screen management *
+*******************************
+
+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_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
+ cl_gui_cfw=>flush( ).
+ p_path = lv_workdir.
+
+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.
+
+*******************************
+* abap2xlsx create XLSX *
+*******************************
+
+ " Create excel instance
+ CREATE OBJECT lo_excel.
+
+ " Styles
+ lo_style_title = lo_excel->add_new_style( ).
+ lo_style_title->font->bold = abap_true.
+ lo_style_title->font->color-rgb = zcl_excel_style_color=>c_blue.
+ lv_style_title_guid = lo_style_title->get_guid( ).
+
+ " Get active sheet
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Demo TechEd' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 5 ip_value = 'TechEd demo' ip_style = lv_style_title_guid ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 7 ip_value = 'Is abap2xlsx simple' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 8 ip_value = 'Is abap2xlsx CooL' ).
+
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 10 ip_value = 'Total score' ).
+ lo_worksheet->set_cell( ip_column = 'C' ip_row = 10 ip_formula = 'SUM(C7:C8)' ).
+
+ " add logo from SMWO
+ lo_drawing = lo_excel->add_new_drawing( ).
+ lo_drawing->set_position( ip_from_row = 2
+ ip_from_col = 'B' ).
+
+ ls_key-relid = 'MI'.
+ ls_key-objid = 'ZTECHED'.
+ lo_drawing->set_media_www( ip_key = ls_key
+ ip_width = 140
+ ip_height = 64 ).
+
+ " assign drawing to the worksheet
+ lo_worksheet->add_drawing( lo_drawing ).
+
+ " Add new sheet
+ lo_worksheet = lo_excel->add_new_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Values' ).
+
+ " Set values for range
+ lo_worksheet->set_cell( ip_row = 4 ip_column = 'A' ip_value = 1 ).
+ lo_worksheet->set_cell( ip_row = 5 ip_column = 'A' ip_value = 2 ).
+ lo_worksheet->set_cell( ip_row = 6 ip_column = 'A' ip_value = 3 ).
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'A' ip_value = 4 ).
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'A' ip_value = 5 ).
+
+ lo_range = lo_excel->add_new_range( ).
+ lo_range->name = 'Values'.
+ lo_range->set_value( ip_sheet_name = 'Values'
+ ip_start_column = 'A'
+ ip_start_row = 4
+ ip_stop_column = 'A'
+ ip_stop_row = 8 ).
+
+ lo_excel->set_active_sheet_index( 1 ).
+
+ " add data validation
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 7.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'C' ip_value = 'Select a value' ).
+
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 8.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'C' ip_value = 'Select a value' ).
+
+ " add autosize (column width)
+ lo_column_dimension = lo_worksheet->get_column_dimension( ip_column = 'B' ).
+ lo_column_dimension->set_auto_size( ip_auto_size = abap_true ).
+ lo_column_dimension = lo_worksheet->get_column_dimension( ip_column = 'C' ).
+ lo_column_dimension->set_auto_size( ip_auto_size = abap_true ).
+
+ " Create xlsx stream
+ CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
+ lv_file = lo_excel_writer->write_file( lo_excel ).
+
+*******************************
+* Output *
+*******************************
+
+ " Convert to binary
+ 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 ).
+
diff --git a/ZA2X/PROG/ZDEMO_TECHED8.slnk b/ZA2X/PROG/ZDEMO_TECHED8.slnk
new file mode 100644
index 0000000..cb4cf68
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED8.slnk
@@ -0,0 +1,231 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED3
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched3.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+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: lo_style_title TYPE REF TO zcl_excel_style,
+ lo_style_green TYPE REF TO zcl_excel_style,
+ lo_style_yellow TYPE REF TO zcl_excel_style,
+ lo_style_red TYPE REF TO zcl_excel_style,
+ lo_drawing TYPE REF TO zcl_excel_drawing,
+ lo_range TYPE REF TO zcl_excel_range,
+ lo_data_validation TYPE REF TO zcl_excel_data_validation,
+ lo_column_dimension TYPE REF TO zcl_excel_worksheet_columndime,
+ lo_style_conditional TYPE REF TO zcl_excel_style_conditional,
+ lv_style_title_guid TYPE zexcel_cell_style,
+ lv_style_green_guid TYPE zexcel_cell_style,
+ lv_style_yellow_guid TYPE zexcel_cell_style,
+ lv_style_red_guid TYPE zexcel_cell_style,
+ ls_cellis TYPE zexcel_conditional_cellis,
+ ls_key TYPE wwwdatatab.
+
+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 'TechEd01.xlsx'.
+
+*******************************
+* Selection screen management *
+*******************************
+
+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_sapgui_workdir( CHANGING sapworkdir = lv_workdir ).
+ cl_gui_cfw=>flush( ).
+ p_path = lv_workdir.
+
+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.
+
+*******************************
+* abap2xlsx create XLSX *
+*******************************
+
+ " Create excel instance
+ CREATE OBJECT lo_excel.
+
+ " Styles
+ lo_style_title = lo_excel->add_new_style( ).
+ lo_style_title->font->bold = abap_true.
+ lo_style_title->font->color-rgb = zcl_excel_style_color=>c_blue.
+ lv_style_title_guid = lo_style_title->get_guid( ).
+
+ " Get active sheet
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Demo TechEd' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 5 ip_value = 'TechEd demo' ip_style = lv_style_title_guid ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 7 ip_value = 'Is abap2xlsx simple' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 8 ip_value = 'Is abap2xlsx CooL' ).
+
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 10 ip_value = 'Total score' ).
+ lo_worksheet->set_cell( ip_column = 'C' ip_row = 10 ip_formula = 'SUM(C7:C8)' ).
+
+ " add logo from SMWO
+ lo_drawing = lo_excel->add_new_drawing( ).
+ lo_drawing->set_position( ip_from_row = 2
+ ip_from_col = 'B' ).
+
+ ls_key-relid = 'MI'.
+ ls_key-objid = 'ZTECHED'.
+ lo_drawing->set_media_www( ip_key = ls_key
+ ip_width = 140
+ ip_height = 64 ).
+
+ " assign drawing to the worksheet
+ lo_worksheet->add_drawing( lo_drawing ).
+
+ " Add new sheet
+ lo_worksheet = lo_excel->add_new_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Values' ).
+
+ " Set values for range
+ lo_worksheet->set_cell( ip_row = 4 ip_column = 'A' ip_value = 1 ).
+ lo_worksheet->set_cell( ip_row = 5 ip_column = 'A' ip_value = 2 ).
+ lo_worksheet->set_cell( ip_row = 6 ip_column = 'A' ip_value = 3 ).
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'A' ip_value = 4 ).
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'A' ip_value = 5 ).
+
+ lo_range = lo_excel->add_new_range( ).
+ lo_range->name = 'Values'.
+ lo_range->set_value( ip_sheet_name = 'Values'
+ ip_start_column = 'A'
+ ip_start_row = 4
+ ip_stop_column = 'A'
+ ip_stop_row = 8 ).
+
+ lo_excel->set_active_sheet_index( 1 ).
+
+ " add data validation
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 7.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'C' ip_value = 'Select a value' ).
+
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 8.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'C' ip_value = 'Select a value' ).
+
+ " add autosize (column width)
+ lo_column_dimension = lo_worksheet->get_column_dimension( ip_column = 'B' ).
+ lo_column_dimension->set_auto_size( ip_auto_size = abap_true ).
+ lo_column_dimension = lo_worksheet->get_column_dimension( ip_column = 'C' ).
+ lo_column_dimension->set_auto_size( ip_auto_size = abap_true ).
+
+ " defne conditional styles
+ lo_style_green = lo_excel->add_new_style( ).
+ lo_style_green->fill->filltype = zcl_excel_style_fill=>c_fill_solid.
+ lo_style_green->fill->bgcolor-rgb = zcl_excel_style_color=>c_green.
+ lv_style_green_guid = lo_style_green->get_guid( ).
+
+ lo_style_yellow = lo_excel->add_new_style( ).
+ lo_style_yellow->fill->filltype = zcl_excel_style_fill=>c_fill_solid.
+ lo_style_yellow->fill->bgcolor-rgb = zcl_excel_style_color=>c_yellow.
+ lv_style_yellow_guid = lo_style_yellow->get_guid( ).
+
+ lo_style_red = lo_excel->add_new_style( ).
+ lo_style_red->fill->filltype = zcl_excel_style_fill=>c_fill_solid.
+ lo_style_red->fill->bgcolor-rgb = zcl_excel_style_color=>c_red.
+ lv_style_red_guid = lo_style_red->get_guid( ).
+
+ " add conditional formatting
+ lo_style_conditional = lo_worksheet->add_new_conditional_style( ).
+ lo_style_conditional->rule = zcl_excel_style_conditional=>c_rule_cellis.
+ ls_cellis-formula = '5'.
+ ls_cellis-operator = zcl_excel_style_conditional=>c_operator_greaterthan.
+ ls_cellis-cell_style = lv_style_green_guid.
+ lo_style_conditional->mode_cellis = ls_cellis.
+ lo_style_conditional->priority = 1.
+ lo_style_conditional->set_range( ip_start_column = 'C'
+ ip_start_row = 10
+ ip_stop_column = 'C'
+ ip_stop_row = 10 ).
+
+ lo_style_conditional = lo_worksheet->add_new_conditional_style( ).
+ lo_style_conditional->rule = zcl_excel_style_conditional=>c_rule_cellis.
+ ls_cellis-formula = '5'.
+ ls_cellis-operator = zcl_excel_style_conditional=>c_operator_equal.
+ ls_cellis-cell_style = lv_style_yellow_guid.
+ lo_style_conditional->mode_cellis = ls_cellis.
+ lo_style_conditional->priority = 2.
+ lo_style_conditional->set_range( ip_start_column = 'C'
+ ip_start_row = 10
+ ip_stop_column = 'C'
+ ip_stop_row = 10 ).
+
+ lo_style_conditional = lo_worksheet->add_new_conditional_style( ).
+ lo_style_conditional->rule = zcl_excel_style_conditional=>c_rule_cellis.
+ ls_cellis-formula = '0'.
+ ls_cellis-operator = zcl_excel_style_conditional=>c_operator_greaterthan.
+ ls_cellis-cell_style = lv_style_red_guid.
+ lo_style_conditional->mode_cellis = ls_cellis.
+ lo_style_conditional->priority = 3.
+ lo_style_conditional->set_range( ip_start_column = 'C'
+ ip_start_row = 10
+ ip_stop_column = 'C'
+ ip_stop_row = 10 ).
+
+
+ " Create xlsx stream
+ CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
+ lv_file = lo_excel_writer->write_file( lo_excel ).
+
+*******************************
+* Output *
+*******************************
+
+ " Convert to binary
+ 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 ).
+
diff --git a/ZA2X/PROG/ZDEMO_TECHED9.slnk b/ZA2X/PROG/ZDEMO_TECHED9.slnk
new file mode 100644
index 0000000..ecd8157
--- /dev/null
+++ b/ZA2X/PROG/ZDEMO_TECHED9.slnk
@@ -0,0 +1,224 @@
+
+
+
+
+
+
+
+
+ *&---------------------------------------------------------------------*
+*& Report ZDEMO_TECHED3
+*&
+*&---------------------------------------------------------------------*
+*&
+*&
+*&---------------------------------------------------------------------*
+
+REPORT zdemo_teched3.
+
+*******************************
+* Data Object declaration *
+*******************************
+
+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: lo_style_title TYPE REF TO zcl_excel_style,
+ lo_style_green TYPE REF TO zcl_excel_style,
+ lo_style_yellow TYPE REF TO zcl_excel_style,
+ lo_style_red TYPE REF TO zcl_excel_style,
+ lo_drawing TYPE REF TO zcl_excel_drawing,
+ lo_range TYPE REF TO zcl_excel_range,
+ lo_data_validation TYPE REF TO zcl_excel_data_validation,
+ lo_column_dimension TYPE REF TO zcl_excel_worksheet_columndime,
+ lo_style_conditional TYPE REF TO zcl_excel_style_conditional,
+ lv_style_title_guid TYPE zexcel_cell_style,
+ lv_style_green_guid TYPE zexcel_cell_style,
+ lv_style_yellow_guid TYPE zexcel_cell_style,
+ lv_style_red_guid TYPE zexcel_cell_style,
+ ls_cellis TYPE zexcel_conditional_cellis,
+ ls_key TYPE wwwdatatab.
+
+DATA: lo_send_request TYPE REF TO cl_bcs,
+ lo_document TYPE REF TO cl_document_bcs,
+ lo_sender TYPE REF TO cl_sapuser_bcs,
+ lo_recipient TYPE REF TO cl_sapuser_bcs,
+ lo_recipient_i TYPE REF TO CL_CAM_ADDRESS_BCS.
+
+DATA: lv_file TYPE xstring,
+ lv_bytecount TYPE i,
+ lv_bytecount_c TYPE sood-objlen,
+ lt_file_tab TYPE solix_tab.
+
+CONSTANTS: lv_default_file_name TYPE string VALUE 'TechEd01.xlsx'.
+
+*******************************
+* abap2xlsx create XLSX *
+*******************************
+
+ " Create excel instance
+ CREATE OBJECT lo_excel.
+
+ " Styles
+ lo_style_title = lo_excel->add_new_style( ).
+ lo_style_title->font->bold = abap_true.
+ lo_style_title->font->color-rgb = zcl_excel_style_color=>c_blue.
+ lv_style_title_guid = lo_style_title->get_guid( ).
+
+ " Get active sheet
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Demo TechEd' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 5 ip_value = 'TechEd demo' ip_style = lv_style_title_guid ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 7 ip_value = 'Is abap2xlsx simple' ).
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 8 ip_value = 'Is abap2xlsx CooL' ).
+
+ lo_worksheet->set_cell( ip_column = 'B' ip_row = 10 ip_value = 'Total score' ).
+ lo_worksheet->set_cell( ip_column = 'C' ip_row = 10 ip_formula = 'SUM(C7:C8)' ).
+
+ " add logo from SMWO
+ lo_drawing = lo_excel->add_new_drawing( ).
+ lo_drawing->set_position( ip_from_row = 2
+ ip_from_col = 'B' ).
+
+ ls_key-relid = 'MI'.
+ ls_key-objid = 'ZTECHED'.
+ lo_drawing->set_media_www( ip_key = ls_key
+ ip_width = 140
+ ip_height = 64 ).
+
+ " assign drawing to the worksheet
+ lo_worksheet->add_drawing( lo_drawing ).
+
+ " Add new sheet
+ lo_worksheet = lo_excel->add_new_worksheet( ).
+ lo_worksheet->set_title( ip_title = 'Values' ).
+
+ " Set values for range
+ lo_worksheet->set_cell( ip_row = 4 ip_column = 'A' ip_value = 1 ).
+ lo_worksheet->set_cell( ip_row = 5 ip_column = 'A' ip_value = 2 ).
+ lo_worksheet->set_cell( ip_row = 6 ip_column = 'A' ip_value = 3 ).
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'A' ip_value = 4 ).
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'A' ip_value = 5 ).
+
+ lo_range = lo_excel->add_new_range( ).
+ lo_range->name = 'Values'.
+ lo_range->set_value( ip_sheet_name = 'Values'
+ ip_start_column = 'A'
+ ip_start_row = 4
+ ip_stop_column = 'A'
+ ip_stop_row = 8 ).
+
+ lo_excel->set_active_sheet_index( 1 ).
+
+ " add data validation
+ lo_worksheet = lo_excel->get_active_worksheet( ).
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 7.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 7 ip_column = 'C' ip_value = 'Select a value' ).
+
+
+ lo_data_validation = lo_worksheet->add_new_data_validation( ).
+ lo_data_validation->type = zcl_excel_data_validation=>c_type_list.
+ lo_data_validation->formula1 = 'Values'.
+ lo_data_validation->cell_row = 8.
+ lo_data_validation->cell_column = 'C'.
+ lo_worksheet->set_cell( ip_row = 8 ip_column = 'C' ip_value = 'Select a value' ).
+
+ " add autosize (column width)
+ lo_column_dimension = lo_worksheet->get_column_dimension( ip_column = 'B' ).
+ lo_column_dimension->set_auto_size( ip_auto_size = abap_true ).
+ lo_column_dimension = lo_worksheet->get_column_dimension( ip_column = 'C' ).
+ lo_column_dimension->set_auto_size( ip_auto_size = abap_true ).
+
+ " defne conditional styles
+ lo_style_green = lo_excel->add_new_style( ).
+ lo_style_green->fill->filltype = zcl_excel_style_fill=>c_fill_solid.
+ lo_style_green->fill->bgcolor-rgb = zcl_excel_style_color=>c_green.
+ lv_style_green_guid = lo_style_green->get_guid( ).
+
+ lo_style_yellow = lo_excel->add_new_style( ).
+ lo_style_yellow->fill->filltype = zcl_excel_style_fill=>c_fill_solid.
+ lo_style_yellow->fill->bgcolor-rgb = zcl_excel_style_color=>c_yellow.
+ lv_style_yellow_guid = lo_style_yellow->get_guid( ).
+
+ lo_style_red = lo_excel->add_new_style( ).
+ lo_style_red->fill->filltype = zcl_excel_style_fill=>c_fill_solid.
+ lo_style_red->fill->bgcolor-rgb = zcl_excel_style_color=>c_red.
+ lv_style_red_guid = lo_style_red->get_guid( ).
+
+ " add conditional formatting
+ lo_style_conditional = lo_worksheet->add_new_conditional_style( ).
+ lo_style_conditional->rule = zcl_excel_style_conditional=>c_rule_cellis.
+ ls_cellis-formula = '5'.
+ ls_cellis-operator = zcl_excel_style_conditional=>c_operator_greaterthan.
+ ls_cellis-cell_style = lv_style_green_guid.
+ lo_style_conditional->mode_cellis = ls_cellis.
+ lo_style_conditional->priority = 1.
+ lo_style_conditional->set_range( ip_start_column = 'C'
+ ip_start_row = 10
+ ip_stop_column = 'C'
+ ip_stop_row = 10 ).
+
+ lo_style_conditional = lo_worksheet->add_new_conditional_style( ).
+ lo_style_conditional->rule = zcl_excel_style_conditional=>c_rule_cellis.
+ ls_cellis-formula = '5'.
+ ls_cellis-operator = zcl_excel_style_conditional=>c_operator_equal.
+ ls_cellis-cell_style = lv_style_yellow_guid.
+ lo_style_conditional->mode_cellis = ls_cellis.
+ lo_style_conditional->priority = 2.
+ lo_style_conditional->set_range( ip_start_column = 'C'
+ ip_start_row = 10
+ ip_stop_column = 'C'
+ ip_stop_row = 10 ).
+
+ lo_style_conditional = lo_worksheet->add_new_conditional_style( ).
+ lo_style_conditional->rule = zcl_excel_style_conditional=>c_rule_cellis.
+ ls_cellis-formula = '0'.
+ ls_cellis-operator = zcl_excel_style_conditional=>c_operator_greaterthan.
+ ls_cellis-cell_style = lv_style_red_guid.
+ lo_style_conditional->mode_cellis = ls_cellis.
+ lo_style_conditional->priority = 3.
+ lo_style_conditional->set_range( ip_start_column = 'C'
+ ip_start_row = 10
+ ip_stop_column = 'C'
+ ip_stop_row = 10 ).
+
+
+ " Create xlsx stream
+ CREATE OBJECT lo_excel_writer TYPE zcl_excel_writer_2007.
+ lv_file = lo_excel_writer->write_file( lo_excel ).
+
+*******************************
+* Output *
+*******************************
+
+ " Convert to binary
+ lt_file_tab = cl_bcs_convert=>xstring_to_solix( iv_xstring = lv_file ).
+ lv_bytecount = xstrlen( lv_file ).
+ lv_bytecount_c = lv_bytecount.
+
+ " Send via email
+ lo_document = cl_document_bcs=>create_document( i_type = 'RAW'
+ i_subject = 'Demo TechEd' ).
+
+ lo_document->add_attachment( i_attachment_type = 'EXT'
+ i_attachment_subject = 'abap2xlsx.xlsx'
+ i_attachment_size = lv_bytecount_c
+ i_att_content_hex = lt_file_tab ).
+
+ lo_sender = cl_sapuser_bcs=>create( sy-uname ).
+ lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
+* lo_recipient_i = cl_cam_address_bcs=>create_internet_address( 'ivan.femia@techedge.it' ).
+
+ lo_send_request = cl_bcs=>create_persistent( ).
+ lo_send_request->set_document( lo_document ).
+ lo_send_request->set_sender( lo_sender ).
+ lo_send_request->add_recipient( lo_recipient ).
+ lo_send_request->set_send_immediately( abap_true ).
+ lo_send_request->send( ).
+