‎2008 Apr 24 9:03 AM
data is_service-service type ref to CL_GOS_TOOLBOX_VIEW.
create object is_service-service.
SET HANDLER is_service-service->on_service_canceled FOR me.
I got error ' you can not create instance of Abstract class CL_GOS_TOOLBOX_VIEW '.
How to create instance for above class.
Thanks in advance.
‎2008 Apr 24 9:11 AM
If CL_GOS_TOOLBOX_VIEW is a abstract class you cannot create instances for this class...to implement these class method on_service_canceled ..first create one child class..within child class you can implement..
Reward if useful.
Dara.
‎2008 Apr 24 9:08 AM
you should either inherit this class in some other class made by you and then use it like
class my_class definition inheriting CL_GOS_TOOLBOX_VIEW.
<data or methods>
endclass.
then use this class.
plz reward if useful
vivek
‎2008 Apr 24 9:11 AM
If CL_GOS_TOOLBOX_VIEW is a abstract class you cannot create instances for this class...to implement these class method on_service_canceled ..first create one child class..within child class you can implement..
Reward if useful.
Dara.