‎2005 Feb 01 4:49 PM
Hi Folks ,
i'm writing a program which contain one class and it's implemetation .
i choose to put the code that related to the(Definition and implementation ) class in INCLUDE file , so that my program looks like this :
report repname .
include class_stuff.
DATA: cref type ref to class_struct ,
....
....
.
CREATE OBJECT cref .
...
cref->meth(var1 = val1 var2 = val2 .... ) .
....
...
and so on .
when i try to execute the program it doesn't run properly , i wachted closely with the debugger and i noticed that after the INCLUDE class_stuff statement it's terminate .
can someone know how to explain this situation and how to avoid from short execution of the program ?
is it possible to define local class inside include ?
‎2005 Feb 01 4:58 PM
‎2005 Feb 01 5:15 PM
i'll try this .
you can tell me what is the reason for this order ?
‎2005 Feb 01 5:24 PM