Files
abap-ztax/src/zcl_common_class.clas.abap
T
2026-08-18 04:42:47 +00:00

26 lines
415 B
ABAP

class ZCL_COMMON_CLASS definition
public
create public .
public section.
types TY_ROW type STRING_TABLE .
types:
TY_T_ROW type STANDARD TABLE OF TY_ROW with DEFAULT KEY .
methods UPLOAD_EXCEL_TO_ITAB
returning
value(RR_DATA) type ref to DATA .
protected section.
private section.
ENDCLASS.
CLASS ZCL_COMMON_CLASS IMPLEMENTATION.
method UPLOAD_EXCEL_TO_ITAB.
endmethod.
ENDCLASS.