From f1e73cd29e08ee08f82d971ea4f9a7ca5db1d674 Mon Sep 17 00:00:00 2001 From: Ivan Date: Mon, 29 Sep 2014 22:41:42 -0500 Subject: [PATCH] Using constant for versioning and moving to version 7.0.1 What's new? Added versioning management --- ZA2X/CLAS/ZCL_EXCEL.slnk | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/ZA2X/CLAS/ZCL_EXCEL.slnk b/ZA2X/CLAS/ZCL_EXCEL.slnk index 90d5a1a..d362e96 100644 --- a/ZA2X/CLAS/ZCL_EXCEL.slnk +++ b/ZA2X/CLAS/ZCL_EXCEL.slnk @@ -1,8 +1,8 @@ - - + + *"* local class implementation for public class *"* use this source file for the implementation part of *"* local helper classes @@ -112,19 +112,20 @@ CLASS zcl_tc_excel IMPLEMENTATION. ENDCLASS. "zcl_Tc_Excel - - - + + + - - - - - - - + + + + + + + + - method ZIF_EXCEL_BOOK_PROPERTIES~INITIALIZE. + METHOD zif_excel_book_properties~initialize. DATA: lv_timestamp TYPE timestampl. me->zif_excel_book_properties~application = 'Microsoft Excel'. @@ -133,10 +134,10 @@ ENDCLASS. "zcl_Tc_Excel GET TIME STAMP FIELD lv_timestamp. me->zif_excel_book_properties~created = lv_timestamp. me->zif_excel_book_properties~creator = sy-uname. - me->zif_excel_book_properties~description = 'Generated with ABAP2XLSX Version 7_0'. + me->zif_excel_book_properties~description = zcl_excel=>version. me->zif_excel_book_properties~modified = lv_timestamp. me->zif_excel_book_properties~lastmodifiedby = sy-uname. - endmethod. +ENDMETHOD. method ZIF_EXCEL_BOOK_PROTECTION~INITIALIZE.