mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 05:46:35 +08:00

git-svn-id: https://subversion.assembla.com/svn/abap2xlsx/trunk@168 b7d68dce-7c3c-4a99-8ce0-9ea847f5d049
219 lines
10 KiB
XML
219 lines
10 KiB
XML
<?xml version="1.0" encoding="utf-16"?>
|
|
<CLAS CLSNAME="ZCL_EXCEL_WRITER_CSV" VERSION="1" LANGU="E" DESCRIPT="Excel writer 2007" UUID="ADD4B74D93C52E57E1000000C0A8FA28" CATEGORY="00" EXPOSURE="2" STATE="1" RELEASE="0" AUTHOR="JACQUED" CREATEDON="20110420" CHANGEDON="00000000" CHGDANYON="00000000" CLSFINAL="X" CLSCCINCL="X" FIXPT="X" UNICODE="X" R3RELEASE="701" CLSBCCAT="00" DURATION_TYPE="0 " RISK_LEVEL="0 ">
|
|
<implementing CLSNAME="ZCL_EXCEL_WRITER_CSV" REFCLSNAME="ZIF_EXCEL_WRITER" VERSION="1" EXPOSURE="2" STATE="1" AUTHOR="FEMIA" CREATEDON="20110428" CHANGEDON="00000000" RELTYPE="1"/>
|
|
<publicSection>class ZCL_EXCEL_WRITER_CSV definition
|
|
public
|
|
final
|
|
create public .
|
|
|
|
*"* public components of class ZCL_EXCEL_WRITER_CSV
|
|
*"* do not include other source files here!!!
|
|
public section.
|
|
|
|
interfaces ZIF_EXCEL_WRITER .</publicSection>
|
|
<protectedSection>*"* protected components of class ZCL_EXCEL_WRITER_2007
|
|
*"* do not include other source files here!!!
|
|
protected section.</protectedSection>
|
|
<privateSection>*"* private components of class ZCL_EXCEL_WRITER_CSV
|
|
*"* do not include other source files here!!!
|
|
private section.
|
|
|
|
data EXCEL type ref to ZCL_EXCEL .
|
|
|
|
methods CREATE
|
|
returning
|
|
value(EP_EXCEL) type XSTRING .
|
|
methods CREATE_CSV
|
|
returning
|
|
value(EP_CONTENT) type XSTRING .</privateSection>
|
|
<localImplementation>*"* local class implementation for public class
|
|
*"* use this source file for the implementation part of
|
|
*"* local helper classes</localImplementation>
|
|
<localTypes>*"* use this source file for any type declarations (class
|
|
*"* definitions, interfaces or data types) you need for method
|
|
*"* implementation or private method's signature</localTypes>
|
|
<localMacros>*"* use this source file for any macro definitions you need
|
|
*"* in the implementation part of the class</localMacros>
|
|
<attribute CLSNAME="ZCL_EXCEL_WRITER_CSV" CMPNAME="EXCEL" VERSION="1" LANGU="E" DESCRIPT="Excel creator" EXPOSURE="0" STATE="1" EDITORDER="1 " AUTHOR="FEMIA" CREATEDON="20110428" CHANGEDON="00000000" ATTDECLTYP="0" ATTEXPVIRT="0" TYPTYPE="3" TYPE="ZCL_EXCEL" SRCROW1="0 " SRCCOLUMN1="0 " SRCROW2="0 " SRCCOLUMN2="0 " R3RELEASE="701" TYPESRC_LENG="0 "/>
|
|
<interfaceMethod CLSNAME="ZCL_EXCEL_WRITER_CSV" CPDNAME="ZIF_EXCEL_WRITER~WRITE_FILE">
|
|
<source>method ZIF_EXCEL_WRITER~WRITE_FILE.
|
|
me->excel = io_excel.
|
|
ep_file = me->create( ).
|
|
endmethod.</source>
|
|
</interfaceMethod>
|
|
<method CLSNAME="ZCL_EXCEL_WRITER_CSV" CMPNAME="CREATE" VERSION="1" LANGU="E" DESCRIPT="Create" EXPOSURE="0" STATE="1" EDITORDER="1 " DISPID="0 " AUTHOR="FEMIA" CREATEDON="20110428" CHANGEDON="00000000" MTDTYPE="0" MTDDECLTYP="0" R3RELEASE="701" BCMTDCAT="00" BCMTDSYN="0">
|
|
<parameter CLSNAME="ZCL_EXCEL_WRITER_CSV" CMPNAME="CREATE" SCONAME="EP_EXCEL" VERSION="1" LANGU="E" CMPTYPE="1" MTDTYPE="0" EDITORDER="1 " DISPID="0 " AUTHOR="FEMIA" CREATEDON="20110428" CHANGEDON="00000000" PARDECLTYP="3" PARPASSTYP="0" TYPTYPE="1" TYPE="XSTRING"/>
|
|
<source>method CREATE.
|
|
|
|
* .csv format with ; delimiter
|
|
|
|
ep_excel = me->CREATE_CSV( ).
|
|
|
|
endmethod.</source>
|
|
</method>
|
|
<method CLSNAME="ZCL_EXCEL_WRITER_CSV" CMPNAME="CREATE_CSV" VERSION="1" LANGU="E" DESCRIPT="Create CSV ; Delimited format" EXPOSURE="0" STATE="1" EDITORDER="2 " DISPID="0 " AUTHOR="FEMIA" CREATEDON="20110428" CHANGEDON="00000000" MTDTYPE="0" MTDDECLTYP="0" R3RELEASE="701" BCMTDCAT="00" BCMTDSYN="0">
|
|
<parameter CLSNAME="ZCL_EXCEL_WRITER_CSV" CMPNAME="CREATE_CSV" SCONAME="EP_CONTENT" VERSION="1" LANGU="E" CMPTYPE="1" MTDTYPE="0" EDITORDER="1 " DISPID="0 " AUTHOR="FEMIA" CREATEDON="20110428" CHANGEDON="00000000" PARDECLTYP="3" PARPASSTYP="0" TYPTYPE="1" TYPE="XSTRING"/>
|
|
<source>method CREATE_CSV.
|
|
|
|
TYPES: BEGIN OF lty_format,
|
|
cmpname TYPE SEOCMPNAME,
|
|
attvalue TYPE SEOVALUE,
|
|
END OF lty_format.
|
|
DATA: lt_format TYPE STANDARD TABLE OF lty_format,
|
|
ls_format LIKE LINE OF lt_format.
|
|
|
|
DATA: lo_iterator TYPE REF TO cl_object_collection_iterator,
|
|
lo_worksheet TYPE REF TO zcl_excel_worksheet.
|
|
|
|
DATA: lt_cell_data TYPE zexcel_t_cell_data_unsorted,
|
|
lv_row TYPE sytabix,
|
|
lv_col TYPE sytabix,
|
|
lv_string TYPE string,
|
|
lc_value TYPE string,
|
|
lv_attrname TYPE SEOCMPNAME.
|
|
|
|
DATA: ls_numfmt TYPE zexcel_s_style_numfmt,
|
|
lo_style TYPE REF TO zcl_excel_style.
|
|
|
|
FIELD-SYMBOLS: <fs_sheet_content> TYPE zexcel_s_cell_data.
|
|
|
|
* --- Retrieve supported cell format
|
|
REFRESH lt_format.
|
|
SELECT * INTO CORRESPONDING FIELDS OF TABLE lt_format
|
|
FROM seocompodf
|
|
WHERE clsname = 'ZCL_EXCEL_STYLE_NUMBER_FORMAT'
|
|
AND typtype = 1
|
|
AND type = 'ZEXCEL_NUMBER_FORMAT'.
|
|
|
|
LOOP AT lt_format INTO ls_format.
|
|
TRANSLATE ls_format-attvalue TO UPPER CASE.
|
|
MODIFY lt_format FROM ls_format.
|
|
ENDLOOP.
|
|
|
|
* STEP 1: Collect strings from the first worksheet
|
|
lo_iterator = excel->get_worksheets_iterator( ).
|
|
WHILE lo_iterator->if_object_collection_iterator~has_next( ) EQ abap_true.
|
|
lo_worksheet ?= lo_iterator->if_object_collection_iterator~get_next( ).
|
|
APPEND LINES OF lo_worksheet->sheet_content TO lt_cell_data.
|
|
EXIT. " Take first worksheet only
|
|
ENDWHILE.
|
|
|
|
DELETE lt_cell_data WHERE cell_formula IS NOT INITIAL. " delete formula content
|
|
|
|
SORT lt_cell_data BY cell_row
|
|
cell_column.
|
|
lv_row = 1.
|
|
lv_col = 1.
|
|
CLEAR lv_string.
|
|
LOOP AT lt_cell_data ASSIGNING <fs_sheet_content>.
|
|
|
|
* --- Retrieve Cell Style format and data type
|
|
CLEAR ls_numfmt.
|
|
IF <fs_sheet_content>-data_type IS INITIAL AND <fs_sheet_content>-cell_style IS NOT INITIAL.
|
|
lo_iterator = excel->get_styles_iterator( ).
|
|
WHILE lo_iterator->if_object_collection_iterator~has_next( ) EQ abap_true.
|
|
lo_style ?= lo_iterator->if_object_collection_iterator~get_next( ).
|
|
CHECK lo_style->get_guid( ) = <fs_sheet_content>-cell_style.
|
|
ls_numfmt = lo_style->number_format->get_structure( ).
|
|
EXIT.
|
|
ENDWHILE.
|
|
ENDIF.
|
|
IF <fs_sheet_content>-data_type IS INITIAL AND ls_numfmt IS NOT INITIAL.
|
|
" determine data-type
|
|
CLEAR lv_attrname.
|
|
CONCATENATE '''' ls_numfmt-NUMFMT '''' INTO ls_numfmt-NUMFMT.
|
|
TRANSLATE ls_numfmt-numfmt TO UPPER CASE.
|
|
READ TABLE lt_format INTO ls_format WITH KEY attvalue = ls_numfmt-NUMFMT.
|
|
IF sy-subrc = 0.
|
|
lv_attrname = ls_format-cmpname.
|
|
ENDIF.
|
|
|
|
IF lv_attrname IS NOT INITIAL.
|
|
FIND FIRST OCCURRENCE OF 'DATETIME' IN lv_attrname.
|
|
IF sy-subrc = 0.
|
|
<fs_sheet_content>-data_type = 'd'.
|
|
ELSE.
|
|
FIND FIRST OCCURRENCE OF 'TIME' IN lv_attrname.
|
|
IF sy-subrc = 0.
|
|
<fs_sheet_content>-data_type = 't'.
|
|
ELSE.
|
|
FIND FIRST OCCURRENCE OF 'DATE' IN lv_attrname.
|
|
IF sy-subrc = 0.
|
|
<fs_sheet_content>-data_type = 'd'.
|
|
ELSE.
|
|
FIND FIRST OCCURRENCE OF 'CURRENCY' IN lv_attrname.
|
|
IF sy-subrc = 0.
|
|
<fs_sheet_content>-data_type = 'n'.
|
|
ELSE.
|
|
FIND FIRST OCCURRENCE OF 'NUMBER' IN lv_attrname.
|
|
IF sy-subrc = 0.
|
|
<fs_sheet_content>-data_type = 'n'.
|
|
ELSE.
|
|
FIND FIRST OCCURRENCE OF 'PERCENTAGE' IN lv_attrname.
|
|
IF sy-subrc = 0.
|
|
<fs_sheet_content>-data_type = 'n'.
|
|
ENDIF. " Purcentage
|
|
ENDIF. " Number
|
|
ENDIF. " Currency
|
|
ENDIF. " Date
|
|
ENDIF. " TIME
|
|
ENDIF. " DATETIME
|
|
ENDIF. " lv_attrname IS NOT INITIAL.
|
|
ENDIF. " <fs_sheet_content>-data_type IS INITIAL AND ls_numfmt IS NOT INITIAL.
|
|
|
|
* --- Add empty rows
|
|
WHILE lv_row < <fs_sheet_content>-cell_row.
|
|
CONCATENATE lv_string cl_abap_char_utilities=>newline INTO lv_string.
|
|
lv_row = lv_row + 1.
|
|
lv_col = 1.
|
|
ENDWHILE.
|
|
|
|
* --- Add empty columns
|
|
WHILE lv_col < <fs_sheet_content>-cell_column.
|
|
CONCATENATE lv_string ';' INTO lv_string. " ls_shared_string-string_value.
|
|
lv_col = lv_col + 1.
|
|
ENDWHILE.
|
|
|
|
* ----- Use format to determine the data type and display format.
|
|
CASE <fs_sheet_content>-data_type.
|
|
* WHEN 'n' OR 'N'.
|
|
* lc_value = zcl_excel_common=>excel_number_to_string( ip_value = <fs_sheet_content>-cell_value ).
|
|
|
|
WHEN 'd' OR 'D'.
|
|
lc_value = zcl_excel_common=>excel_string_to_date( ip_value = <fs_sheet_content>-cell_value ).
|
|
|
|
WHEN 't' OR 'T'.
|
|
lc_value = zcl_excel_common=>excel_string_to_time( ip_value = <fs_sheet_content>-cell_value ).
|
|
|
|
WHEN OTHERS.
|
|
lc_value = <fs_sheet_content>-cell_value.
|
|
|
|
ENDCASE.
|
|
REPLACE ALL OCCURRENCES OF '"' in lc_value with '""'.
|
|
FIND FIRST OCCURRENCE OF ';' IN lc_value. " <fs_sheet_content>-cell_value.
|
|
IF sy-subrc = 0.
|
|
CONCATENATE lv_string '"' lc_value '"' INTO lv_string.
|
|
ELSE.
|
|
CONCATENATE lv_string lc_value INTO lv_string.
|
|
ENDIF.
|
|
|
|
ENDLOOP. " AT lt_cell_data
|
|
|
|
CLEAR ep_content.
|
|
|
|
CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
|
|
EXPORTING
|
|
TEXT = lv_string
|
|
* MIMETYPE = ' '
|
|
* ENCODING =
|
|
IMPORTING
|
|
BUFFER = ep_content
|
|
EXCEPTIONS
|
|
FAILED = 1
|
|
OTHERS = 2
|
|
.
|
|
|
|
endmethod.</source>
|
|
</method>
|
|
</CLAS>
|