I'm doing some ALV class which will do some fast creation of all needed stuff + some additional functions to make it faster to use. When I create alv grid object before screen call (in case of built-in-screen line in reuse alv) then everything works fine until I call this screen as a popup. Means, I create object and container earlier than PBO of screen, and for full screen it works ok, but for popup I need to create a copy of object once again so it can be displayed. Everything works fine but I have some own events and I want them to be registered from the original instance (when I use popup screen), so for example someone set handler for lo_events->something for instance, and I've created instance2 with same attributes but I wants to know which handlers were registered for instance so I could register them for instance 2.
Hope my problem is clear