*"* use this source file for the definition and implementation of *"* local helper classes, interface definitions and type *"* declarations *"* use this source file for any type of declarations (class *"* definitions, interfaces or type declarations) you need for *"* components in the private section *"* use this source file for any macro definitions you need *"* in the implementation part of the class METHOD add_pagebreak. DATA: ls_pagebreak LIKE LINE OF me->mt_pagebreaks. ls_pagebreak-cell_row = ip_row. ls_pagebreak-cell_column = zcl_excel_common=>convert_column2int( ip_column ). INSERT ls_pagebreak INTO TABLE me->mt_pagebreaks. ENDMETHOD. METHOD get_all_pagebreaks. rt_pagebreaks = me->mt_pagebreaks. ENDMETHOD.