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

Data base table empty

naveen_inuganti2
Active Contributor
0 Likes
607

HI ALL....

I want to check the data in the data base table.....

But i dont know the input paramter entry, which i have to give before executing the table...

So know how can i know that the table empty or not....!!!

Thanks,

Naveen.I

1 ACCEPTED SOLUTION
Read only

GauthamV
Active Contributor
0 Likes
507

hi,

goto se12 ,give table name - display.

After u click on components tab(cntrlshftf10), u will get selection screen of that table.there in application toolbar u have a button called number of entries if u click on tht button u will get no of records in that table.

reward points if hlpful.

2 REPLIES 2
Read only

Former Member
0 Likes
507

select * from <dbtable> into table itab.

if itab is initial.

write:/ ' table is empty'.

else

write:/ itab-...... .

endif.

Read only

GauthamV
Active Contributor
0 Likes
508

hi,

goto se12 ,give table name - display.

After u click on components tab(cntrlshftf10), u will get selection screen of that table.there in application toolbar u have a button called number of entries if u click on tht button u will get no of records in that table.

reward points if hlpful.