‎2008 Feb 04 1:05 PM
Hi all,
i got a table contol. I need to have a message class for validating at least a record in the table control. How can i do it?
thnk
‎2008 Feb 04 1:08 PM
Hello,
Do like this.
Find the number of records of the ITAB u r using.
data: lines type i.
describe table itab lines lines.
if lines = 0.
message " This table does not contain any records.
endif.
Cheers,
Vasanth
‎2008 Feb 04 1:11 PM
okie. how about the using of the chain in the table control. I want certain field in the table control to become enable.