‎2011 Dec 13 10:53 AM
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
‎2011 Dec 13 11:05 AM
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.