Look my code class :
CLASS myclass DEFINITION.
PUBLIC SECTION.
METHODS:
get_data_list.
get_data_list_spe.
ENDCLASS.
CLASS myclass IMPLEMENTATION.
METHOD get_data_list.
... my code
ENDMETHOD.
METHOD get_data_list_spe.
me->get_data_list.
ENDMETHOD.
ENDCLASS.
The ABAP compilator reject this code because me->get_data_list is not defined. Is it possible to call a other method ? if yes how can i get this in my code ?
Thanks
Cheers