mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 05:04:11 +08:00
remove XFELD (#714)
see https://github.com/sapmentors/abap2xlsx/issues/692
This commit is contained in:
parent
41823b64c9
commit
6c92a7f1ee
|
@ -49,7 +49,7 @@ DATA:
|
||||||
FIELD-SYMBOLS: <wa_files> TYPE t_demo_excel15.
|
FIELD-SYMBOLS: <wa_files> TYPE t_demo_excel15.
|
||||||
|
|
||||||
PARAMETERS: p_path TYPE zexcel_export_dir,
|
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.
|
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_path.
|
||||||
|
|
|
@ -17,7 +17,7 @@ DATA: lo_excel TYPE REF TO zcl_excel,
|
||||||
CONSTANTS: gc_save_file_name TYPE string VALUE '19_SetActiveSheet.xlsx'.
|
CONSTANTS: gc_save_file_name TYPE string VALUE '19_SetActiveSheet.xlsx'.
|
||||||
INCLUDE zdemo_excel_outputopt_incl.
|
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.
|
START-OF-SELECTION.
|
||||||
|
|
|
@ -12,7 +12,7 @@ public section.
|
||||||
|
|
||||||
data LEGACY_PALETTE type ref to ZCL_EXCEL_LEGACY_PALETTE read-only .
|
data LEGACY_PALETTE type ref to ZCL_EXCEL_LEGACY_PALETTE read-only .
|
||||||
data SECURITY type ref to ZCL_EXCEL_SECURITY .
|
data SECURITY type ref to ZCL_EXCEL_SECURITY .
|
||||||
data USE_TEMPLATE type XFELD .
|
data USE_TEMPLATE type ABAP_BOOL .
|
||||||
|
|
||||||
methods ADD_NEW_AUTOFILTER
|
methods ADD_NEW_AUTOFILTER
|
||||||
importing
|
importing
|
||||||
|
|
|
@ -483,8 +483,8 @@ CLASS zcl_excel_worksheet DEFINITION
|
||||||
!ip_table_title TYPE string
|
!ip_table_title TYPE string
|
||||||
!ip_top_left_column TYPE zexcel_cell_column_alpha DEFAULT 'B'
|
!ip_top_left_column TYPE zexcel_cell_column_alpha DEFAULT 'B'
|
||||||
!ip_top_left_row TYPE zexcel_cell_row DEFAULT 3
|
!ip_top_left_row TYPE zexcel_cell_row DEFAULT 3
|
||||||
!ip_transpose TYPE xfeld OPTIONAL
|
!ip_transpose TYPE abap_bool OPTIONAL
|
||||||
!ip_no_header TYPE xfeld OPTIONAL
|
!ip_no_header TYPE abap_bool OPTIONAL
|
||||||
RAISING
|
RAISING
|
||||||
zcx_excel .
|
zcx_excel .
|
||||||
METHODS set_title
|
METHODS set_title
|
||||||
|
|
Loading…
Reference in New Issue
Block a user