Hallo,
is there any way at runtime to determine through which class a classmethod has been called, without sending a parameter in?
e.g. I have 2 classes 'class1' and 'class2' which inherit the same class method 'method1'. If I run ##class(class1).method1() and ##class(class2).method1(), how can I tell at runtime inside method1 which class was specified in calling the classmethod?
Thanks Billy
