Hello Nicolas,
Abstract classes are only for declaration. You can not implement them. Remove the implementation of your abstract class. (comment out or delete the following lines of code from you program and check again:).
class abstract_class implementation.
method to_table.
...
me->parse_string( str ).
...
endmethod.
endclass.
You can only implement the subclasses of the abstract class.
Thanks,
John.