Hi All,
I have created a class and an interface. I have inlcluded the interface at the interface tab in my class. The interface is having only 1 method, START. Everything was fine until I start calling this method via a test program. Below is my code snippets:
DATA: OBJECT TYPE REF TO ZCL_TEST.
CREATE OBJECT OBJECT.
OBJECT->ZIF_TEST~START( ).
It gave a short dump and say I'm trying to call a method which is not implemented. Is there a implementation problem?