Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Attribute appearance in UI

viralkumar_patel
Explorer
0 Likes
451

Hello Experts,

I have a quety regarding UI attribute appreance.

I have a field in UI and it gets visible in the screen all the time I run the application, instead I want to make that field attribute customizing dependent, ie. if product customizing status is green then only it should be visible in the screen otherwise it should not get displayed in the UI.

Kindly provide me valuable input.

Thanks & Regards,

Viral

1 REPLY 1
Read only

Former Member
0 Likes
414

Hi,

Goto layout and double click onthe field and set the group to the field.I take group as GP

// write this code in PBO

if product_cuct status = green // write your code ie your field

loop at screen.

if screen-group1 = 'GP'

screen-active = 1.

else.

screen-active = 0.

endif.

modify screen.

endloop.

endif.