2011 Mar 12 9:24 PM
Hi
CREATE OBJECT lo_manager
EXPORTING
is_object = la_obj
ip_no_commit = space
EXCEPTIONS
OTHERS = 1.
there r two screens 100 and 200
on screen 100 there is button on which i call screen 200 and through above code i have GOS object as well on screen 200.
but when i click back i came back to screen 100 and still have that GOS object .
I wanted that when i click back and come to screen 100 GOS object should disapear
Regards
Ammad
Hi
CREATE OBJECT lo_manager
EXPORTING
is_object = la_obj
ip_no_commit = space
EXCEPTIONS
OTHERS = 1.
there r two screens 100 and 200
on screen 100 there is button on which i call screen 200 and through above code i have GOS object as well on screen 200.
but when i click back i came back to screen 100 and still have that GOS object .
I wanted that when i click back and come to screen 100 GOS object should disapear
Regards
Ammad
2011 Mar 14 3:27 PM
When you go from the screen 200 to 100, you should call the method UNPUBLISH( ) of the GOS manager. Like:
lo_manager->unpublish( ). " remove GOS
Regards,
Naimesh Patel