‎2010 May 11 3:04 PM
Hello All,
I am taking class name from user. I have to declare a object for this class.
if i use
DATA: obj_ref type ref to (p_input),
i am getting error '(p_input) is unknown'
Please let me know how can i acheive this?
‎2010 May 11 3:24 PM
Hi,
You can use "type ref to object" and later "create object obj_ref type (p_input).".
Regards, Gerd Rother
‎2010 May 11 3:24 PM
Hi,
You can use "type ref to object" and later "create object obj_ref type (p_input).".
Regards, Gerd Rother