‎2005 Mar 19 12:29 AM
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
‎2005 Mar 19 1:02 AM
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
‎2005 Mar 19 1:02 AM
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
‎2005 Mar 19 3:22 AM