cancel
Showing results for 
Search instead for 
Did you mean: 

display element at runtime

Former Member
0 Kudos

Hi All,

am new to sap abap , i have littel qestion , i have panel , i set the visible property to none at design time , i want to display

it when button is clicled at runtiem ?? how can i get refernce to the panel and how can i change its properties .

thanks in advance

ghadeer

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Many thanks its working fine now

former_member199125
Active Contributor
0 Kudos

Hi...

create an attribute of type wdui_visibility and bind it to visible property of your panel.

initially you want to hide, right? then in wddoint method set the attribute value to 01

wd_context->set_attribute( exporting name = attribute name

value = '01' ).

now when you click on button you wanto visible the panel. then

in button action set the value to 02.

Regards

Srinivas