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

chain on table control

Former Member
0 Likes
340

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

2 REPLIES 2
Read only

Former Member
0 Likes
324

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

Read only

0 Likes
324

okie. how about the using of the chain in the table control. I want certain field in the table control to become enable.