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
369

Hi All!

My requiremnt is to select the entries for company from a table where the company code value starts from 2* only there are many other company code values in that table apart from 2000 like1000 also.

eg: I need to select all the companies for the company codes starting from 2000 only, like 2000,2001,2002.....

pls advice...

2 REPLIES 2
Read only

Former Member
0 Likes
350

Try with the below select statement.

SELECT * FROM T001

INTO TABLE ITAB

WHERE BUKRS LIKE '2%'.

Thanks,

Srinivas

Read only

0 Likes
350

thanks a lot...,