‎2008 Jan 02 7:52 AM
Hi all,
I need to display some of the fields from a DB table to the screen table control..
I wrote the query and displyed..But there if i have 5 records means all the rows except this i want to enable.
See it want to display 5 records..That want to in disabled format and other lines want to be in enabled format..
Can anyone help me to overcome this
‎2008 Jan 02 8:03 AM
Hi,
Add those columns you want in display mode to a grop.
then in code
loop at screen.
if screen-group = <your group>
screen-active = 0.
endif.
modify screen.
endloop.
Hope this helps.
Regards,
Renjith Michael.
‎2008 Jan 02 8:14 AM
‎2008 Jan 02 8:23 AM
Hi,
take the screen layout.
double click on the field. in the options pop up there is option for giving a group name. You can use that.
Regards,
Renjith Michael.