‎2007 Jul 02 5:20 PM
i have data in internal table not fetched from db table i want to check if data is available in internal table
thanks in advance
‎2007 Jul 02 5:23 PM
Hi
To check the data in an internal table
IF NOT ITAB[] is INITIAL.
To compare the data with DB tables
fetch the data from DB table into ITAB1
then compare the ITAB and ITAB1 like
<b>IF ITAB[] = ITAB1[]</b>
Reward points for useful Answers
Regards
Anji
‎2007 Jul 02 5:23 PM
Hi
To check the data in an internal table
IF NOT ITAB[] is INITIAL.
To compare the data with DB tables
fetch the data from DB table into ITAB1
then compare the ITAB and ITAB1 like
<b>IF ITAB[] = ITAB1[]</b>
Reward points for useful Answers
Regards
Anji