Hi gurus,
I was wondering if it was possible to use the new syntax for object creation with dynamic typing.
thus the old statement where iv_classname is a text.
DATA: lo_next TYPE REF TO object. CREATE OBJECT lo_next TYPE (iv_classname).
This cannot become something like this:
DATA(lo_next) = NEW (iv_classname).
Is this possible?
Kind regards,
Wim