2007 Jul 10 2:39 PM
Hi all,
select objnr
kokrs
belnr
from covp
into table it_covp
where objnr = 'PR*'
here i need to select entries from COVP Table with objnr starting with PR
could any one suggest best way of doing this.
if use pattern its giving error.
Thanks in advance.
2007 Jul 10 3:00 PM
Hi Sarala,
it should work with:
Select objnr kokrs belnr
from covp
into table it_covp
where objnr like 'PR%'.
Regards
Nicola
Hi all,
select objnr
kokrs
belnr
from covp
into table it_covp
where objnr = 'PR*'
here i need to select entries from COVP Table with objnr starting with PR
could any one suggest best way of doing this.
if use pattern its giving error.
Thanks in advance.
2007 Jul 10 3:00 PM
Hi Sarala,
it should work with:
Select objnr kokrs belnr
from covp
into table it_covp
where objnr like 'PR%'.
Regards
Nicola
2007 Jul 10 3:07 PM
select objnr
kokrs
belnr
from covp
into table it_covp
where objnr LIKE 'PR%'
Regards,
A.Singh
2007 Jul 10 3:26 PM
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |