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

is initial

Former Member
0 Likes
808

select kunnr vbeln from ztable into table itab1 where flag is initial.

this is giving me an error 'The operator IS can only be used in f is null or f is not null'

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
636

yeah i know flag = space works

but shouldnt flag is initial work too

3 REPLIES 3
Read only

Former Member
0 Likes
636

Hi,

Give FLAG = SPACE.

select kunnr vbeln from ztable into table itab1 where <b>flag = space</b>.

Thanks,

Naren

Read only

Former Member
0 Likes
637

yeah i know flag = space works

but shouldnt flag is initial work too

Read only

0 Likes
636

Megan, that syntax works good in IF statements, but not in SELECT statements, you should use the suggestion syntax FLAG = SPACE

Regards,

RIch Heilman