remove TYPE-POOLS statements (#948)

* remove TYPE-POOLS statements

* fix whitespace

Co-authored-by: sandraros <34005250+sandraros@users.noreply.github.com>
This commit is contained in:
Lars Hvam 2022-01-03 21:42:10 +01:00 committed by GitHub
parent 496b51e531
commit 8d072439da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
32 changed files with 2 additions and 45 deletions

View File

@ -23,7 +23,6 @@
REPORT zdemo_calendar.
TYPE-POOLS: abap.
CONSTANTS: gc_save_file_name TYPE string VALUE 'Calendar.xlsx'.
INCLUDE zdemo_excel_outputopt_incl.
INCLUDE zdemo_calendar_classes.
@ -34,7 +33,7 @@ PARAMETERS: p_from TYPE dfrom,
p_to TYPE dto.
SELECTION-SCREEN BEGIN OF BLOCK orientation WITH FRAME TITLE orient.
PARAMETERS: p_portr TYPE flag RADIOBUTTON GROUP orie,
PARAMETERS: p_portr TYPE flag RADIOBUTTON GROUP orie,
p_lands TYPE flag RADIOBUTTON GROUP orie DEFAULT 'X'.
SELECTION-SCREEN END OF BLOCK orientation.

View File

@ -8,8 +8,6 @@
REPORT zdemo_excel11.
TYPE-POOLS: abap.
DATA: central_search TYPE bapibus1006_central_search,
addressdata_search TYPE bapibus1006_addr_search,
others_search TYPE bapibus1006_other_data.

View File

@ -10,8 +10,6 @@
REPORT zdemo_excel15.
TYPE-POOLS: abap.
TYPES:
BEGIN OF t_demo_excel15,
input TYPE string,

View File

@ -8,8 +8,6 @@
REPORT zdemo_excel19.
TYPE-POOLS: abap.
DATA: lo_excel TYPE REF TO zcl_excel,
lo_worksheet TYPE REF TO zcl_excel_worksheet.

View File

@ -8,8 +8,6 @@
REPORT zdemo_excel23.
TYPE-POOLS: abap.
DATA: lo_excel TYPE REF TO zcl_excel,
lo_worksheet TYPE REF TO zcl_excel_worksheet,
lo_hyperlink TYPE REF TO zcl_excel_hyperlink.

View File

@ -8,8 +8,6 @@
REPORT zdemo_excel24.
TYPE-POOLS: abap.
DATA: lo_excel TYPE REF TO zcl_excel,
lo_worksheet TYPE REF TO zcl_excel_worksheet,
lo_column TYPE REF TO zcl_excel_column,

View File

@ -8,8 +8,6 @@
REPORT zdemo_excel3.
TYPE-POOLS: abap.
DATA: lo_excel TYPE REF TO zcl_excel,
lo_worksheet TYPE REF TO zcl_excel_worksheet,
lo_column TYPE REF TO zcl_excel_column.

View File

@ -8,8 +8,6 @@
REPORT zdemo_excel33.
TYPE-POOLS: abap.
DATA: lo_excel TYPE REF TO zcl_excel,
lo_worksheet TYPE REF TO zcl_excel_worksheet,
lo_converter TYPE REF TO zcl_excel_converter,

View File

@ -1,7 +1,5 @@
REPORT zdemo_excel37.
TYPE-POOLS: vrm.
DATA: excel TYPE REF TO zcl_excel,
reader TYPE REF TO zif_excel_reader,
go_error TYPE REF TO cx_root,

View File

@ -7,7 +7,6 @@
*&---------------------------------------------------------------------*
REPORT zdemo_excel42.
TYPE-POOLS: vrm.
DATA: lo_excel TYPE REF TO zcl_excel,
lo_worksheet TYPE REF TO zcl_excel_worksheet,

View File

@ -1,8 +1,7 @@
*"* use this source file for any type of declarations (class
*"* definitions, interfaces or type declarations) you need for
*"* components in the private section
TYPE-POOLS: sydes.
TYPE-POOLS: slis.
*--------------------------------------------------------------------*
* CLASS c_oi_proxy_error
*--------------------------------------------------------------------*

View File

@ -49,7 +49,6 @@ CLASS zcl_excel_autofilter DEFINITION
METHODS get_values
RETURNING
VALUE(rt_filter) TYPE zexcel_t_autofilter_values .
TYPE-POOLS abap .
METHODS is_row_hidden
IMPORTING
!iv_row TYPE zexcel_cell_row

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_autofilters DEFINITION
PUBLIC SECTION.
*"* public components of class ZCL_EXCEL_AUTOFILTERS
*"* do not include other source files here!!!
TYPE-POOLS abap .
CONSTANTS c_autofilter TYPE string VALUE '_xlnm._FilterDatabase'. "#EC NOTEXT

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_column DEFINITION
*"* public components of class ZCL_EXCEL_COLUMN
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPE-POOLS abap .
METHODS constructor
IMPORTING

View File

@ -4,7 +4,6 @@ CLASS zcl_excel_comment DEFINITION
CREATE PUBLIC .
PUBLIC SECTION.
TYPE-POOLS abap .
METHODS constructor .
METHODS get_name

View File

@ -133,7 +133,6 @@ CLASS zcl_excel_common DEFINITION
!ip_value TYPE t
RETURNING
VALUE(ep_value) TYPE zexcel_cell_value .
TYPE-POOLS abap .
TYPES: t_char10 TYPE c LENGTH 10.
TYPES: t_char255 TYPE c LENGTH 255.
CLASS-METHODS split_file

View File

@ -5,7 +5,6 @@ CLASS zcl_excel_converter DEFINITION
*"* public components of class ZCL_EXCEL_CONVERTER
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPE-POOLS abap .
CLASS-METHODS class_constructor .
METHODS ask_option

View File

@ -6,8 +6,6 @@ CLASS zcl_excel_converter_alv DEFINITION
*"* public components of class ZCL_EXCEL_CONVERTER_ALV
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPE-POOLS abap .
TYPE-POOLS kkblo .
INTERFACES zif_excel_converter
ALL METHODS ABSTRACT .

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_data_validation DEFINITION
PUBLIC SECTION.
*"* public components of class ZCL_EXCEL_DATA_VALIDATION
*"* do not include other source files here!!!
TYPE-POOLS abap .
DATA errorstyle TYPE zexcel_data_val_error_style .
DATA operator TYPE zexcel_data_val_operator .

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_data_validations DEFINITION
*"* public components of class ZCL_EXCEL_DATA_VALIDATIONS
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPE-POOLS abap .
METHODS add
IMPORTING

View File

@ -12,7 +12,6 @@ CLASS zcl_excel_drawing DEFINITION
*"* do not include other source files here!!!
*"* protected components of class ZCL_EXCEL_DRAWING
*"* do not include other source files here!!!
TYPE-POOLS abap .
CONSTANTS c_graph_pie TYPE zexcel_graph_type VALUE 1. "#EC NOTEXT
CONSTANTS c_graph_line TYPE zexcel_graph_type VALUE 2. "#EC NOTEXT

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_hyperlink DEFINITION
*"* public components of class ZCL_EXCEL_HYPERLINK
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPE-POOLS abap .
CLASS-METHODS create_external_link
IMPORTING

View File

@ -5,7 +5,6 @@ CLASS zcl_excel_legacy_palette DEFINITION
PUBLIC SECTION.
*"* public components of class ZCL_EXCEL_LEGACY_PALETTE
*"* do not include other source files here!!!
TYPE-POOLS abap .
METHODS constructor .
METHODS is_modified

View File

@ -5,7 +5,6 @@ CLASS zcl_excel_reader_2007 DEFINITION
PUBLIC SECTION.
*"* public components of class ZCL_EXCEL_READER_2007
*"* do not include other source files here!!!
TYPE-POOLS ixml .
INTERFACES zif_excel_reader .

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_row DEFINITION
*"* public components of class ZCL_EXCEL_ROW
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPE-POOLS abap .
METHODS constructor
IMPORTING

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_security DEFINITION
*"* public components of class ZCL_EXCEL_SECURITY
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPE-POOLS abap .
DATA lockrevision TYPE flag .
DATA lockstructure TYPE flag .

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_sheet_setup DEFINITION
PUBLIC SECTION.
*"* public components of class ZCL_EXCEL_SHEET_SETUP
*"* do not include other source files here!!!
TYPE-POOLS abap .
DATA black_and_white TYPE flag .
DATA cell_comments TYPE stringval .

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_style_alignment DEFINITION
*"* public components of class ZCL_EXCEL_STYLE_ALIGNMENT
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPE-POOLS abap .
CONSTANTS c_horizontal_general TYPE zexcel_alignment VALUE 'general'. "#EC NOTEXT
CONSTANTS c_horizontal_left TYPE zexcel_alignment VALUE 'left'. "#EC NOTEXT

View File

@ -4,7 +4,6 @@ CLASS zcl_excel_style_fill DEFINITION
CREATE PUBLIC .
PUBLIC SECTION.
TYPE-POOLS abap .
*"* public components of class ZCL_EXCEL_STYLE_FILL
*"* do not include other source files here!!!

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_style_font DEFINITION
PUBLIC SECTION.
*"* public components of class ZCL_EXCEL_STYLE_FONT
*"* do not include other source files here!!!
TYPE-POOLS abap .
DATA bold TYPE flag .
DATA color TYPE zexcel_s_style_color .

View File

@ -6,7 +6,6 @@ CLASS zcl_excel_table DEFINITION
*"* public components of class ZCL_EXCEL_TABLE
*"* do not include other source files here!!!
PUBLIC SECTION.
TYPE-POOLS abap .
CONSTANTS builtinstyle_dark1 TYPE zexcel_table_style VALUE 'TableStyleDark1'. "#EC NOTEXT
CONSTANTS builtinstyle_dark2 TYPE zexcel_table_style VALUE 'TableStyleDark2'. "#EC NOTEXT

View File

@ -9,9 +9,6 @@ CLASS zcl_excel_worksheet DEFINITION
*"* do not include other source files here!!!
*"* protected components of class ZCL_EXCEL_WORKSHEET
*"* do not include other source files here!!!
TYPE-POOLS abap .
TYPE-POOLS slis .
TYPE-POOLS soi .
INTERFACES zif_excel_sheet_printsettings .
INTERFACES zif_excel_sheet_properties .