Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Implementing an interface

Former Member
0 Likes
276

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?

1 REPLY 1
Read only

Former Member
0 Likes
241

Closed