remove XFELD (#714)

see https://github.com/sapmentors/abap2xlsx/issues/692
This commit is contained in:
Abo 2021-01-04 16:59:45 +01:00 committed by GitHub
parent 41823b64c9
commit 6c92a7f1ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -49,7 +49,7 @@ DATA:
FIELD-SYMBOLS: <wa_files> 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.

View File

@ -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.

View File

@ -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

View File

@ -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