class ZCL_EXCEL_PROPERTIES definition
public
final
create public .
public section.
*"* public components of class ZCL_EXCEL_PROPERTIES
*"* do not include other source files here!!!
data CREATOR type ZEXCEL_CREATOR value 'Ivan Femia'. "#EC NOTEXT .
data LASTMODIFIEDBY type ZEXCEL_CREATOR value 'Ivan Femia'. "#EC NOTEXT .
data CREATED type TIMESTAMPL .
data MODIFIED type TIMESTAMPL .
data TITLE type ZEXCEL_TITLE value 'abap2xlsx'. "#EC NOTEXT .
data SUBJECT type ZEXCEL_SUBJECT .
data DESCRIPTION type ZEXCEL_DESCRIPTION value 'Created using abap2xlsx'. "#EC NOTEXT .
data KEYWORDS type ZEXCEL_KEYWORDS .
data CATEGORY type ZEXCEL_CATEGORY .
data COMPANY type ZEXCEL_COMPANY value 'abap2xlsx'. "#EC NOTEXT .
data APPLICATION type ZEXCEL_APPLICATION value 'Microsoft Excel'. "#EC NOTEXT .
data DOCSECURITY type ZEXCEL_DOCSECURITY value '0'. "#EC NOTEXT .
data SCALECROP type ZEXCEL_SCALECROP value ''. "#EC NOTEXT .
data LINKSUPTODATE type FLAG .
data SHAREDDOC type FLAG .
data HYPERLINKSCHANGED type FLAG .
data APPVERSION type ZEXCEL_APPVERSION value '12.0000'. "#EC NOTEXT .
methods CONSTRUCTOR .*"* protected components of class ZABAP_EXCEL_PROPERTIES
*"* do not include other source files here!!!
protected section.*"* private components of class ZCL_EXCEL_PROPERTIES
*"* do not include other source files here!!!
private section.*"* local class implementation for public class
*"* use this source file for the implementation part of
*"* local helper classes*"* use this source file for any type declarations (class
*"* definitions, interfaces or data types) you need for method
*"* implementation or private method's signature*"* use this source file for any macro definitions you need
*"* in the implementation part of the classmethod CONSTRUCTOR.
DATA: lv_timestamp TYPE timestampl.
GET TIME STAMP FIELD lv_timestamp.
created = lv_timestamp.
modified = lv_timestamp.
endmethod.