diff --git a/src/demos/zdemo_excel15.prog.abap b/src/demos/zdemo_excel15.prog.abap index f220c8f..21cfdb7 100644 --- a/src/demos/zdemo_excel15.prog.abap +++ b/src/demos/zdemo_excel15.prog.abap @@ -49,7 +49,7 @@ DATA: FIELD-SYMBOLS: TYPE t_demo_excel15. PARAMETERS: p_path TYPE zexcel_export_dir, - p_noout TYPE xfeld DEFAULT abap_true. + p_noout TYPE abap_bool DEFAULT abap_true. AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_path. diff --git a/src/demos/zdemo_excel19.prog.abap b/src/demos/zdemo_excel19.prog.abap index 050d63d..9538759 100644 --- a/src/demos/zdemo_excel19.prog.abap +++ b/src/demos/zdemo_excel19.prog.abap @@ -17,7 +17,7 @@ DATA: lo_excel TYPE REF TO zcl_excel, CONSTANTS: gc_save_file_name TYPE string VALUE '19_SetActiveSheet.xlsx'. INCLUDE zdemo_excel_outputopt_incl. -PARAMETERS: p_noout TYPE xfeld DEFAULT abap_true. +PARAMETERS: p_noout TYPE abap_bool DEFAULT abap_true. START-OF-SELECTION. diff --git a/src/zcl_excel.clas.abap b/src/zcl_excel.clas.abap index 529885e..0366a3d 100644 --- a/src/zcl_excel.clas.abap +++ b/src/zcl_excel.clas.abap @@ -12,7 +12,7 @@ public section. data LEGACY_PALETTE type ref to ZCL_EXCEL_LEGACY_PALETTE read-only . data SECURITY type ref to ZCL_EXCEL_SECURITY . - data USE_TEMPLATE type XFELD . + data USE_TEMPLATE type ABAP_BOOL . methods ADD_NEW_AUTOFILTER importing diff --git a/src/zcl_excel_worksheet.clas.abap b/src/zcl_excel_worksheet.clas.abap index 02893b0..2de0b54 100644 --- a/src/zcl_excel_worksheet.clas.abap +++ b/src/zcl_excel_worksheet.clas.abap @@ -483,8 +483,8 @@ CLASS zcl_excel_worksheet DEFINITION !ip_table_title TYPE string !ip_top_left_column TYPE zexcel_cell_column_alpha DEFAULT 'B' !ip_top_left_row TYPE zexcel_cell_row DEFAULT 3 - !ip_transpose TYPE xfeld OPTIONAL - !ip_no_header TYPE xfeld OPTIONAL + !ip_transpose TYPE abap_bool OPTIONAL + !ip_no_header TYPE abap_bool OPTIONAL RAISING zcx_excel . METHODS set_title