2022 Jun 22 8:47 AM
Hi Everyone ,
I have three views ; V1, V2 and V3 The main view is V1. They re connected the each other with plugs like ;
V1(outbound plugs) -> V2(ınbound plug)
V1(outbound plugs) -> V3(ınbound plug)
V2(outbound plugs) -> V3(ınbound plug)
V2outbound plugs) -> V1(ınbound plug)
V3(outbound plugs) -> V1(ınbound plug)
Each view contains elements such as buttons, captions . When i go back to V1 from V2 , ı can delete all elements in V2 with bellow codes ; (ı added all elements dynamically)
DATA : lo_container TYPE REF TO cl_wd_uielement_container .
lo_container ?= wd_this->mo_view->get_element( id = 'ROOTUIELEMENTCONTAINER' ) .
lo_container->remove_all_children( ).
wd_this->fire_vdocrel_outbound_plg(
).
but...
How can I delete elements in V2 when going from V3 to V1.
I mean , how can i delete elements of another view from diffirent view .
(by the way sorry for my English )
Thanks regards .
2022 Jun 22 12:04 PM
2022 Jun 22 12:04 PM
2022 Jun 22 1:50 PM