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

Internal Table

Former Member
0 Likes
294

Hi ,

I have data in an internal table .

Based on a condition i delete some records from it .

now how can i check whether my internal table is empty or not.

Rgards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
268

Hi Arun:

You could be use the nexts lines:

DATA: N TYPE I,

ITAB TYPE TABLE OF I.

DESCRIBE TABLE "ITAB" LINES "N".

I hope, this Instruction can to serve you.

Regars

Daniel Martínez

2 REPLIES 2
Read only

Former Member
0 Likes
269

Hi Arun:

You could be use the nexts lines:

DATA: N TYPE I,

ITAB TYPE TABLE OF I.

DESCRIBE TABLE "ITAB" LINES "N".

I hope, this Instruction can to serve you.

Regars

Daniel Martínez

Read only

0 Likes
268


if not itab[] is initial.

endif.

Regards,

Rich Heilman