Hi,
I created a class in se24 and in method wrote simple addition logic
I created a object in my prog for the class and entered the numbers it works fine.
But when I use ME to reference the method its showing an error ME is not defined by any DATA statemnt
the code is as follows
class zp_class definition load.
PARAMETERS : p_x type i,
p_y type i.
data : z type i.
CALL METHOD me->zadd
EXPORTING
v_x = p_x
v_y = p_y
IMPORTING
v_z = z
.
write :z .
How to make use of ME plz guide me
regards