‎2008 Sep 15 5:02 PM
Hi ,
I want to retrieve all the records whose objid field begins with 'X'
If I give the following query its not working.
select * from table into itab where objid like 'X'.
Swarna.
‎2008 Sep 15 5:42 PM
hi,
use the following,
select * from <table> into table <int table> where <fldnam> like 'X%'.
all d best.
‎2008 Sep 15 5:42 PM
hi,
use the following,
select * from <table> into table <int table> where <fldnam> like 'X%'.
all d best.
‎2008 Sep 15 5:48 PM
hi,
use the following,
select * from <table> into table <int tab> where objid like 'X%'.
all d best.