Hi,
I need to hide a transparentcontainer which is having table depending upon radio button selected from the RadioButtonGroupbykey.
For this I have written code as below:
CL_WD_TRANSPARENT_CONTAINER=>NEW_TRANSPARENT_CONTAINER( EXPORTING ID = 'SO_CONTAINER' RECEIVING CONTROL = lr_container ).
if radiobuttongroupbykey = 'NO'.
CALL METHOD lr_container->set_visible
EXPORTING
value = '01'.
endif.
This code is not working as expected. Please help to solve this.
Thanks in advance.
.