Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Select statement

Former Member
0 Likes
466

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
445

Hi Sarala,

it should work with:

Select objnr kokrs belnr

from covp

into table it_covp

where objnr like 'PR%'.

Regards

Nicola

3 REPLIES 3
Read only

Former Member
0 Likes
446

Hi Sarala,

it should work with:

Select objnr kokrs belnr

from covp

into table it_covp

where objnr like 'PR%'.

Regards

Nicola

Read only

Former Member
0 Likes
445

select objnr

kokrs

belnr

from covp

into table it_covp

where objnr LIKE 'PR%'

Regards,

A.Singh

Read only

Former Member
0 Likes
445

Thank you.