‎2007 Aug 21 7:13 AM
‎2007 Aug 21 7:17 AM
You can, but if you read any performance documentation, you will read that it's the worst code you could made.
Fred
‎2007 Aug 21 7:19 AM
Hi Pavan,
It is not suggestable to use select endselect. Instead we have to use select into table and then loop on the itab afterwards.
‎2007 Aug 21 7:21 AM
HI Pavan
chk this one
SELECT * FROM T006 INTO X006.
APPEND X006.
ENDSELECT
instead of above one u can use this one
SELECT * FROM T006 INTO TABLE X006.
reward points to all helpful answers
kiran.M
‎2007 Aug 21 7:21 AM
HI pavan,
Yes you can use SELECT -ENDSELECT in newer version.
Regards
Sourabh Verma
‎2007 Aug 21 7:31 AM
hi pavan
ya we can use select endselect in newer versions too...unless and until you use
internal table.
for eg...
select single * from table into table itab where <condition>.
if not use end select like
select single * from table where <condition>.
reward if useful...
cheers
asha
end select.