Hello experts
I have a class CL_X created as an abstract class. In this, there is a method, called check_doc_x.
Now, I have a sub class inheriting from CL_X. In this sub class, I've redefined check_doc_x for some standalone checks. In addition I have a sub class method check_doc_y. Now, I want to access super class method check_doc_x inside the sub class method check_doc_y. All the methods are instance methods.
Is this possible? I tried casting and it didn't work.