mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-04 20:19:46 +08:00
remove DTEL INTTYPE (#898)
* first draft - remove INTTYPE * rewrite inttype as char Co-authored-by: sandraros <34005250+sandraros@users.noreply.github.com>
This commit is contained in:
parent
49938b0c60
commit
a35c91face
|
@ -163,28 +163,28 @@ CLASS zcl_excel_converter DEFINITION
|
|||
METHODS create_style_normal
|
||||
IMPORTING
|
||||
!i_alignment TYPE zexcel_alignment OPTIONAL
|
||||
!i_inttype TYPE inttype OPTIONAL
|
||||
!i_inttype TYPE abap_typekind OPTIONAL
|
||||
!i_decimals TYPE int1 OPTIONAL
|
||||
RETURNING
|
||||
VALUE(ro_style) TYPE REF TO zcl_excel_style .
|
||||
METHODS create_style_stripped
|
||||
IMPORTING
|
||||
!i_alignment TYPE zexcel_alignment OPTIONAL
|
||||
!i_inttype TYPE inttype OPTIONAL
|
||||
!i_inttype TYPE abap_typekind OPTIONAL
|
||||
!i_decimals TYPE int1 OPTIONAL
|
||||
RETURNING
|
||||
VALUE(ro_style) TYPE REF TO zcl_excel_style .
|
||||
METHODS create_style_subtotal
|
||||
IMPORTING
|
||||
!i_alignment TYPE zexcel_alignment OPTIONAL
|
||||
!i_inttype TYPE inttype OPTIONAL
|
||||
!i_inttype TYPE abap_typekind OPTIONAL
|
||||
!i_decimals TYPE int1 OPTIONAL
|
||||
RETURNING
|
||||
VALUE(ro_style) TYPE REF TO zcl_excel_style .
|
||||
METHODS create_style_total
|
||||
IMPORTING
|
||||
!i_alignment TYPE zexcel_alignment OPTIONAL
|
||||
!i_inttype TYPE inttype OPTIONAL
|
||||
!i_inttype TYPE abap_typekind OPTIONAL
|
||||
!i_decimals TYPE int1 OPTIONAL
|
||||
RETURNING
|
||||
VALUE(ro_style) TYPE REF TO zcl_excel_style .
|
||||
|
@ -223,7 +223,7 @@ CLASS zcl_excel_converter DEFINITION
|
|||
IMPORTING
|
||||
!i_type TYPE ty_style_type
|
||||
!i_alignment TYPE zexcel_alignment DEFAULT space
|
||||
!i_inttype TYPE inttype DEFAULT space
|
||||
!i_inttype TYPE abap_typekind DEFAULT space
|
||||
!i_decimals TYPE int1 DEFAULT 0
|
||||
RETURNING
|
||||
VALUE(r_style) TYPE zexcel_cell_style .
|
||||
|
@ -246,7 +246,7 @@ CLASS zcl_excel_converter DEFINITION
|
|||
METHODS set_autofilter_area .
|
||||
METHODS set_cell_format
|
||||
IMPORTING
|
||||
!i_inttype TYPE inttype
|
||||
!i_inttype TYPE abap_typekind
|
||||
!i_decimals TYPE int1
|
||||
RETURNING
|
||||
VALUE(r_format) TYPE zexcel_number_format .
|
||||
|
|
|
@ -31,7 +31,7 @@ TYPES: BEGIN OF ts_subtotal_rows,
|
|||
TYPES: BEGIN OF ts_styles,
|
||||
type TYPE ty_style_type,
|
||||
alignment TYPE zexcel_alignment,
|
||||
inttype TYPE inttype,
|
||||
inttype TYPE abap_typekind,
|
||||
decimals TYPE int1,
|
||||
style TYPE REF TO zcl_excel_style,
|
||||
guid TYPE zexcel_cell_style,
|
||||
|
|
|
@ -40,11 +40,13 @@
|
|||
</DD03P>
|
||||
<DD03P>
|
||||
<FIELDNAME>INTTYPE</FIELDNAME>
|
||||
<ROLLNAME>INTTYPE</ROLLNAME>
|
||||
<ADMINFIELD>0</ADMINFIELD>
|
||||
<VALEXI>X</VALEXI>
|
||||
<SHLPORIGIN>F</SHLPORIGIN>
|
||||
<COMPTYPE>E</COMPTYPE>
|
||||
<INTTYPE>C</INTTYPE>
|
||||
<INTLEN>000002</INTLEN>
|
||||
<DATATYPE>CHAR</DATATYPE>
|
||||
<LENG>000001</LENG>
|
||||
<MASK> CHAR</MASK>
|
||||
<DDTEXT>ABAP data type (C,D,N,...)</DDTEXT>
|
||||
</DD03P>
|
||||
<DD03P>
|
||||
<FIELDNAME>DECIMALS</FIELDNAME>
|
||||
|
|
Loading…
Reference in New Issue
Block a user